LDFLAGS和交叉编译问题只与一些库(ex directfb,libjpeg)

时间:2014-09-04 14:22:36

标签: eclipse autotools libjpeg yocto ldflags

当我尝试在LDFLAGS中设置一些库时,我遇到了Eclipse的问题。我有以下配置:

  • 的Eclipse
  • 使用autotools进行Yocto项目
  • ublibceabi交叉编译器
  • 用C编程

当我构建一个简单的Hello World程序时,我可以从输出控制台看到命令:

arm-poky-linux-uclibceabi-gcc  -march=armv7-a -marm -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi -DHAVE_CONFIG_H -I. -I..   --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi  -g -O0  --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi -MT hello-hello.o -MD -MP -MF .deps/hello-hello.Tpo -c -o hello-hello.o `test -f 'hello.c' || echo './'`hello.c
mv -f .deps/hello-hello.Tpo .deps/hello-hello.Po
../arm-poky-linux-uclibceabi-libtool --tag=CC   --mode=link arm-poky-linux-uclibceabi-gcc  -march=armv7-a -marm -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi  -g -O0  --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi  --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi -o hello hello-hello.o  
arm-poky-linux-uclibceabi-libtool: link: arm-poky-linux-uclibceabi-gcc -march=armv7-a -marm -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi -g -O0 --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi -o hello hello-hello.o

现在,如果我必须使用一些库,比如libjpeg,我知道我必须编辑LDFLAGS环境变量。那么,在Project>属性> Autotools>配置,我编辑了LDFLAGS添加

-L/path/to/lib -ljpeg

现在在构建项目时我遇到了这个问题:

checking for style of include used by make... GNU
checking for arm-poky-linux-uclibceabi-gcc... arm-poky-linux-uclibceabi-gcc  -march=armv7-a -marm -mthumb-interwork -mfloat-abi=hard -mfpu=neon -mtune=cortex-a9 --sysroot=/opt/tiny-linux-uclibc/1.5.1/sysroots/cortexa9hf-vfp-neon-poky-linux-uclibceabi
checking whether the C compiler works... no
configure: error: in `/home/user/workspace/hello':
configure: error: in `/home/user/workspace/hello':
configure: error: C compiler cannot create executables
configure: error: C compiler cannot create executables
See `config.log' for more details

如果我尝试使用其他标准库,例如-lm,它可以正常工作。 所以,我无法想象Eclipse是如何不喜欢我的一些库...

0 个答案:

没有答案