crt1.o linux x64上没有这样的文件c编译错误

前端之家收集整理的这篇文章主要介绍了crt1.o linux x64上没有这样的文件c编译错误前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在linux平台上迈出第一步.我安装了Centos x64.我正在尝试构建一个包含几个函数和几个单元测试的小程序.

我使用Netbeans 7.1.2作为开发环境.

以下是构建过程的输出

CLEAN SUCCESSFUL (total time: 671ms)

"/usr/bin/gmake" -f nbproject/Makefile-Debug.mk QMAKE= SUBPROJECTS= .build-conf
gmake[1]: Entering directory `/home/john/Dev/GoatsCheese'
"/usr/bin/gmake"  -f nbproject/Makefile-Debug.mk dist/Debug/GNU-Linux-x86/goatscheese
gmake[2]: Entering directory `/home/john/Dev/GoatsCheese'
mkdir -p build/Debug/GNU-Linux-x86
rm -f build/Debug/GNU-Linux-x86/main.o.d
g++ -m32   -c -g -I/usr/include/cppunit -MMD -MP -MF build/Debug/GNU-Linux-x86/main.o.d -o build/Debug/GNU-Linux-x86/main.o main.cpp
mkdir -p dist/Debug/GNU-Linux-x86
g++ -m32    -o dist/Debug/GNU-Linux-x86/goatscheese build/Debug/GNU-Linux-x86/main.o  
/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status

编译器设置为创建32位可执行文件,但我不认为这是一个问题(可以在Windows上的x64平台上创建32位可执行文件 – 我熟悉的平台).

Locate在以下位置查找crt1.o文件

locate crt1.o
/usr/lib64/Mcrt1.o
/usr/lib64/Scrt1.o
/usr/lib64/crt1.o
/usr/lib64/gcrt1.o

我不确定我是否错过了一个包或者我是否应该创建一个符号链接.

最佳答案
您需要安装32位标准C库开发包.它可能被命名为libc6-dev-i386.
原文链接:https://www.f2er.com/linux/440438.html

猜你在找的Linux相关文章