我试图在windows上的Eclipse中交叉编译(使用不同的x86工具链)C代码。
挑选
File->New->C Project->Empty Project
Toolchain: CrossGCC
我给了:
Cross compiler prefix: i686-pc-linux-gnu-
Cross compiler path: D:\Work\cygwin-sources-linux\toolchain\usr\bin
当我试着建造的时候,我发现了错误。
16:15:00 **** Incremental Build of configuration Debug for project cross-comp ****
make all
Building file: ../cross.c
Invoking: Cross GCC Compiler
i686-pc-linux-gnu-gcc -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"cross.d" -MT"cross.o" -o "cross.o" "../cross.c"
make: *** [cross.o] Error 53
16:15:00 Build Finished (took 322ms)
我怀疑为什么它显示的是i686 pc linux gnu gcc而不是i686-pc-linux-gnu-gcc.exe
最佳答案
错误53是Windows系统错误,意思是"The network path was not found."这有帮助吗?可能您的生成链中的某个文件未找到。
关于c - 无法在Windows OS上的Eclipse中交叉编译C,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/33498866/