请扮演一位资深驱动工程师,解决以下问题:farsight@ubuntu:~/farsight/feng/day8/jpeg-9e$ ./configure --prefix=/usr/local/lib CC=arm-linux-gcc --host=arm-linux --enable-shared --enable-static configure: loading site script /opt/stm32_sdk/site-config-cortexa7t2hf-neon-vfpv4-ostl-linux-gnueabi checking build system type... x86_64-pc-linux-gnu checking host system type... arm-unknown-linux-gnu checking target system type... arm-unknown-linux-gnu checking for a BSD-compatible install... /usr/bin/install -c checking whether build environment is sane... yes checking for arm-linux-strip... no checking for strip... strip checking for a race-free mkdir -p... /bin/mkdir -p checking for gawk... gawk checking whether make sets $(MAKE)... yes checking whether make supports nested variables... yes checking whether make supports nested variables... (cached) yes checking whether to enable maintainer-specific portions of Makefiles... no checking for arm-linux-gcc... arm-linux-gcc checking whether the C compiler works... no configure: error: in `/home/farsight/farsight/feng/day8/jpeg-9e': configure: error: C compiler cannot create executables See `config.log' for more details,请详细说明每一步解决步骤
时间: 2023-06-27 08:04:13 浏览: 187
首先,需要确认系统中是否安装了 arm-linux-gcc 编译器,可以通过执行命令 "which arm-linux-gcc" 进行检查。如果没有安装,需要先安装该编译器。
接着,需要检查是否设置了正确的 host 和 target 系统类型,可以通过执行命令 "uname -m" 和 "uname -s" 来获取当前系统的架构和系统名称,并将其设置为 configure 命令中的参数。
然后,需要检查是否正确设置了 CC 和 --enable-shared、--enable-static 参数。CC 参数指定了编译器的路径,--enable-shared 和 --enable-static 参数分别用于生成动态链接库和静态链接库。
如果以上步骤都正确,但仍然出现了 C compiler cannot create executables 的错误,则需要查看 config.log 文件,查找错误原因。常见的错误原因包括编译器环境变量设置错误、缺少依赖库等。根据错误信息逐一排查,并进行修复即可。
最终,当 configure 命令成功执行并生成 Makefile 文件后,使用 make 命令进行编译即可。
阅读全文