2

我正在尝试使用 Linaro 6 进行编译,但我收到了这个错误,我认为这与 GCC 6 有关吗?我对编译内核或编码非常业余,但即使搜索类似的术语,我也无法弄清楚:

  CC      drivers/iommu/msm_iommu-v1.o
In file included from include/linux/io.h:22:0,
                 from drivers/iommu/msm_iommu-v1.c:20:
drivers/iommu/msm_iommu-v1.c: In function '__program_context':
drivers/iommu/msm_iommu_hw-v1.h:78:31: warning: result of '16777215 << 14' requires 39 bits to represent, but 'int' only has 32 bits [-Wshift-overflow=]
error, forbidden warning: msm_iommu_hw-v1.h:78
scripts/Makefile.build:308: recipe for target 'drivers/iommu/msm_iommu-v1.o' failed

这是我的 GitHub:

https://github.com/mykesorrel/surnia_kernel

4

1 回答 1

1

看起来像那个 iommu 驱动程序的错误。它试图将位移位转换为 aint而不是 a long, int 没有足够的位来完成操作。我猜-Wno-error没有使用,所以所有警告都被视为错误。

这个问题将对您有所帮助:如何在没有警告被视为错误的情况下进行编译?

我个人所做的是CFLAGS在我的 .bashrc 中进行更新(假设您使用的是 Linux)。这就是我使用的:

# Ensure C builds don't fail on warnings
export CFLAGS="-Wno-error"
export CXXFLAGS="-Wno-error"
于 2017-01-07T19:39:38.370 回答