ฉันได้รวมsys/ptrace.h
เข้ากับโปรแกรม C ของฉันแล้ว
ผลลัพธ์ของ/usr/lib/gcc/x86_64-linux-gnu/4.8/cc1 -v
ให้เส้นทางต่อไปนี้ที่ gcc ค้นหาไฟล์ส่วนหัว
#include "..." search starts here:
#include <...> search starts here:
/usr/lib/gcc/x86_64-linux-gnu/4.8/include
/usr/local/include
/usr/lib/gcc/x86_64-linux-gnu/4.8/include-fixed
/usr/include
End of search list.
ผลลัพธ์ของgcc -M
โปรแกรมของฉันให้ตำแหน่งไฟล์ส่วนหัวต่อไปนี้
pt.o: pt.c /usr/include/stdc-predef.h /usr/include/stdio.h \
/usr/include/features.h /usr/include/x86_64-linux-gnu/sys/cdefs.h \
/usr/include/x86_64-linux-gnu/bits/wordsize.h \
/usr/include/x86_64-linux-gnu/gnu/stubs.h \
/usr/include/x86_64-linux-gnu/gnu/stubs-64.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stddef.h \
/usr/include/x86_64-linux-gnu/bits/types.h \
/usr/include/x86_64-linux-gnu/bits/typesizes.h /usr/include/libio.h \
/usr/include/_G_config.h /usr/include/wchar.h \
/usr/lib/gcc/x86_64-linux-gnu/4.8/include/stdarg.h \
/usr/include/x86_64-linux-gnu/bits/stdio_lim.h \
/usr/include/x86_64-linux-gnu/bits/sys_errlist.h \
/usr/include/x86_64-linux-gnu/sys/ptrace.h
เนื่องจาก/usr/include/x86_64-linux-gnu/
ไม่มีอยู่ในเอาต์พุตแรก gcc จะค้นหาได้sys/ptrace.h
อย่างไร
แก้ไข:
ผลลัพธ์ของecho '#include <sys/ptrace.h>' | gcc -fsyntax-only -xc -v -H -
ผลลัพธ์ใน
Configured with: ../src/configure -v --with-pkgversion='Ubuntu 4.8.4-2ubuntu1~14.04' --with-bugurl=file:///usr/share/doc/gcc-4.8/README.Bugs --enable-languages=c,c++,java,go,d,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.8 --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.8 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --disable-libmudflap --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-4.8-amd64/jre --enable-java-home --with-jvm-root-dir=/usr/lib/jvm/java-1.5.0-gcj-4.8-amd64 --with-jvm-jar-dir=/usr/lib/jvm-exports/java-1.5.0-gcj-4.8-amd64 --with-arch-directory=amd64 --with-ecj-jar=/usr/share/java/eclipse-ecj.jar --enable-objc-gc --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --with-tune=generic --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 4.8.4 (Ubuntu 4.8.4-2ubuntu1~14.04)
/sys/ptrace.h
แต่sys/ptrace.h
ใช่มั้ย
/usr/include/x86_64-linux-gnu
จะถูกถือว่าเป็นระบบรวมถึงไดเรกทอรีและควรgcc -v
ได้รับการรวมอยู่ในรายการค้นหาเส้นทางพิมพ์โดย ฉันไม่แน่ใจว่ามีคนจัดการเพื่อให้บรรลุข้อผิดพลาดนั้น; -v
ถ้าผมจำไม่ผิดวิธีที่ชัดเจนที่สุดในการเพิ่มระบบรวมถึงไดเรกทอรีไม่เพิ่มไปยังสิ่งที่พิมพ์โดย (ฉันเขียน ~ preprocessor ของ GCC ประมาณ 50% แต่นั่นก็เป็น 15 ปีที่แล้วดังนั้นฉันอาจจะเข้าใจผิดบางอย่าง)
/usr/include
ซ้ำค้นหาด้านล่าง นั่นจะทำลายห้องสมุดซีทุกแห่งในโลก
/usr/include
.. คุณกำลังพยายามแก้ปัญหาอะไรอยู่?