我正在尝试交叉编译一个简单的代码片段

  1 #include <sys/socket.h>
  2 #include <stdio.h>
  3
  4 int main()
  5 {
  6     printf("%d\n", SOL_NETLINK);
  7     return 0;
  8 }

使用arm-linux-gnueabihf-g++(来自Ubuntu)针对Raspbian sysroot,且--sysroot开关设置为$SYSROOT
编译失败,并显示以下错误:
test.cpp:6:20: error: ‘SOL_NETLINK’ was not declared in this scope

即使$SYSROOT/usr/include/arm-linux-gnueabihf/bits/socket.h包含
所需的定义。

因此,我认为工具链也包含提到的 header ,并且它是第一个包含的。后一个 header 某种程度上没有此SOL_NETLINK定义。因此,我需要一种方法来告诉编译器,它比sysroot的工具更喜欢工具链的头文件。
> arm-linux-gnueabihf-g++ -v
Using built-in specs.
COLLECT_GCC=arm-linux-gnueabihf-g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc-cross/arm-linux-gnueabihf/5/lto-wrapper
Target: arm-linux-gnueabihf
Configured with: ../src/configure -v --with-pkgversion='Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4' --with-bugurl=file:///usr/share/doc/gcc-5/README.Bugs --enable-languages=c,ada,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-5 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-libitm --disable-libquadmath --enable-plugin --with-system-zlib --disable-browser-plugin --enable-java-awt=gtk --enable-gtk-cairo --with-java-home=/usr/lib/jvm/java-1.5.0-gcj-5-armhf-cross/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-5-armhf-cross --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-5-armhf-cross --with-arch-directory=arm --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --disable-libgcj --enable-objc-gc --enable-multiarch --enable-multilib --disable-sjlj-exceptions --with-arch=armv7-a --with-fpu=vfpv3-d16 --with-float=hard --with-mode=thumb --disable-werror --enable-multilib --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=arm-linux-gnueabihf --program-prefix=arm-linux-gnueabihf- --includedir=/usr/arm-linux-gnueabihf/include
Thread model: posix
gcc version 5.4.0 20160609 (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4)

最佳答案

#include <sys/socket.h>将包含一个位于{include path}/sys/socket.h文件夹下的文件。

包含路径可以是您使用gcc -I--includedir等各种选项添加的任何文件夹。此外,还有一些默认的包含路径,您应该可以使用gcc -xc++ -E -v -看到它。

使用gcc的“-I”选项会将包含路径首先搜索,然后再包含任何默认包含路径。

现在,这应该给您足够的信息来理解您提供的包含内容不能指向文件$SYSROOT/usr/include/arm-linux-gnueabihf/bits/socket.h,因为它不是以{include path}/sys/socket.h结尾

关于c++ - 使用gcc在工具链中优先使用sysroot头,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/47458961/

10-11 18:51