Android 内核编译错误 gcc6 linaro 6
Android kernel compile error gcc6 linaro 6
我正在尝试使用 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:
看起来像是那个 iommu 驱动程序的错误。它试图将位移位转换为 int
而不是 long
,int 没有足够的位来完成操作。我猜 -Wno-error
没有被使用,所以所有警告都被视为错误。
这个问题对你有帮助:How to compile without warnings being treated as errors?
我个人所做的是在我的 .bashrc 中更新 CFLAGS
(假设您使用的是 Linux)。这是我使用的:
# Ensure C builds don't fail on warnings
export CFLAGS="-Wno-error"
export CXXFLAGS="-Wno-error"
我正在尝试使用 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:
看起来像是那个 iommu 驱动程序的错误。它试图将位移位转换为 int
而不是 long
,int 没有足够的位来完成操作。我猜 -Wno-error
没有被使用,所以所有警告都被视为错误。
这个问题对你有帮助:How to compile without warnings being treated as errors?
我个人所做的是在我的 .bashrc 中更新 CFLAGS
(假设您使用的是 Linux)。这是我使用的:
# Ensure C builds don't fail on warnings
export CFLAGS="-Wno-error"
export CXXFLAGS="-Wno-error"