每次我尝试使用`clang -Weverything`进行编译时,都会收到警告“包含位置'/usr/local/include'对于交叉编译不安全”
Posted
技术标签:
【中文标题】每次我尝试使用`clang -Weverything`进行编译时,都会收到警告“包含位置\'/usr/local/include\'对于交叉编译不安全”【英文标题】:Getting warning "include location '/usr/local/include' is unsafe for cross-compilation" every time I try to compile using `clang -Weverything`每次我尝试使用`clang -Weverything`进行编译时,都会收到警告“包含位置'/usr/local/include'对于交叉编译不安全” 【发布时间】:2020-10-21 21:23:43 【问题描述】:如果这个问题不清楚,我很抱歉,我什至都在努力调试这个问题。我在 macOS 上,现在每次使用 clang
和 -Weverything and -Werror
标志编译 C 程序时都会收到以下错误/警告:
error: include location '/usr/local/include' is unsafe for cross-compilation [-Werror,-Wpoison-system-directories]
最初我认为这是与我的代码有关的问题,但我发现现在我尝试编译的每个程序都会出现此错误。尽管总是使用这些标志进行编译,但我以前从未遇到过此错误,并且因为它现在发生在每个程序中,我怀疑这是我的编译器或我的系统改变的东西。最近我能想到的唯一改变是我在 VirtualBox 上使用 Lubuntu VM 创建了一些共享文件夹并更新了 Xcode。
我可以在没有-Weverything
标志的情况下编译程序,它似乎可以按预期工作,但我想解决实际问题以继续使用-Weverything
。正如其他人以及该线程here 所提到的那样,在现实生活中使用-Weverything -Werror
是过度的,但是,我主要将其用作学习工具,我想了解为什么即使是基本的也会出现这个问题像helloworld.c
这样的程序(见下文)。
我遇到了一个讨论here,但答案引用了一个我不熟悉且不确定如何使用的configure.ac
文件。
如果我能提供更多信息来帮助调试此问题,请告诉我。
例如,以下是来自cc -Weverything -Werror -v helloworld.c
的结果:
Apple clang version 12.0.0 (clang-1200.0.32.2)
Target: x86_64-apple-darwin19.6.0
Thread model: posix
InstalledDir: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin
"/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang" -cc1 -triple x86_64-apple-macosx10.15.0 -Wdeprecated-objc-isa-usage -Werror=deprecated-objc-isa-usage -Werror=implicit-function-declaration -emit-obj -mrelax-all -disable-free -disable-llvm-verifier -discard-value-names -main-file-name helloworld.c -mrelocation-model pic -pic-level 2 -mthread-model posix -mframe-pointer=all -fno-strict-return -masm-verbose -munwind-tables -target-sdk-version=10.15.6 -fcompatibility-qualified-id-block-type-checking -target-cpu penryn -dwarf-column-info -debugger-tuning=lldb -target-linker-version 609 -v -resource-dir /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/12.0.0 -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -I/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include -internal-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/12.0.0/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include -internal-externc-isystem /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include -Weverything -Werror -Wno-reorder-init-list -Wno-implicit-int-float-conversion -Wno-c99-designator -Wno-final-dtor-non-final-class -Wno-extra-semi-stmt -Wno-misleading-indentation -Wno-quoted-include-in-framework-header -Wno-implicit-fallthrough -Wno-enum-enum-conversion -Wno-enum-float-conversion -fdebug-compilation-dir /Users/Projects/helloworld -ferror-limit 19 -fmessage-length 204 -stack-protector 1 -fstack-check -mdarwin-stkchk-strong-link -fblocks -fencode-extended-block-signature -fregister-global-dtors-with-atexit -fgnuc-version=4.2.1 -fobjc-runtime=macosx-10.15.0 -fmax-type-align=16 -fdiagnostics-show-option -fcolor-diagnostics -o /var/folders/mn/v00y5wf55qjf76r4q9rvxq1c0000gn/T/helloworld-89fdc3.o -x c helloworld.c
clang -cc1 version 12.0.0 (clang-1200.0.32.2) default target x86_64-apple-darwin19.6.0
error: include location '/usr/local/include' is unsafe for cross-compilation [-Werror,-Wpoison-system-directories]
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/local/include"
ignoring nonexistent directory "/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/Library/Frameworks"
#include "..." search starts here:
#include <...> search starts here:
/usr/local/include
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/clang/12.0.0/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include
/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/include
/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/System/Library/Frameworks (framework directory)
End of search list.
1 error generated.
【问题讨论】:
您更改了环境变量或其他一些编译器设置,使编译器认为您正在为 VM 进行交叉编译,而不是为主机进行编译。您应该使用-v
选项编译一个简单的“hello world”程序,然后将输出复制/粘贴到问题中。
Clang 11.0.0 在搜索列表中显示/usr/local/include
(如果它存在于系统中)但不会产生警告。所以这可能是 Clang 12 中的新行为?
-Weverything -Werror
通常很傻。 -Weverything
警告各种构造,其中许多构造完全无害。它基本上包括编译器开发人员认为在任何可能的情况下任何人都可能想要的所有可能的警告。它用于测试编译器而不是实际使用。然而,您是说如果碰巧触发了这些警告,您希望编译中止?
特别是,-Wpoison-system-directories
专门设计为仅在交叉编译时有用。当为原生编译时,使用它是没有意义的,并且会不可避免地产生毫无意义的警告。除了“不要那样做”之外,我真的没有看到任何明智的回答你的问题;不要请求你不想要的警告,当然也不要让它成为错误。
@NateEldredge:Apple 工具配置为在 Xcode.app 中提供和使用所有必要的头文件和库,避免主机系统的头文件和库。本质上,Xcode的默认编译和链接是交叉编译;它针对在 Xcode.app 中完全定义的一组系统,不知道主机系统是这样一个系统的事实。所以我更惊讶的是 Clang 似乎默认包含/usr/local/include
,而不是它被设置为毒系统目录。至少,默认行为应该是包含它或毒化它,而不是两者兼而有之。
【参考方案1】:
您有两个选项可以消除此警告。
-
使用
-Wno-poison-system-directories
选项忽略此警告。
请注意,前缀 -Wno-
适用于所有警告。
完整命令:
cc -Weverything -Wno-poison-system-directories -Werror helloworld.c
-
使用
-isysroot
选项设置逻辑系统根目录。
完整命令(如果安装了开发者命令行工具):
cc -isysroot /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk -Weverything -Werror helloworld.c
完整命令(使用 Xcode 内部的 SDK):
cc -isysroot "$(xcode-select --print-path)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk" -Weverything -Werror helloworld.c
【讨论】:
以上是关于每次我尝试使用`clang -Weverything`进行编译时,都会收到警告“包含位置'/usr/local/include'对于交叉编译不安全”的主要内容,如果未能解决你的问题,请参考以下文章
使用 ccache / clang 编译 Qt 代码时避免多余的警告