configure: error: I suspect your system does not have 32-bit developement libraries (libc and header

背景: 为升级glic, 升级 gcc 到高版本, 使用源文件安装 ./configure 。报错
Can’t install on Linux Mint, “/usr/bin/ld: cannot find crt1.o: No such file or directory”
checking for default BUILD_CONFIG… bootstrap-debug
checking for --enable-vtable-verify… no
/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
configure: error: I suspect your system does not have 32-bit developement libraries (libc and headers). If you have them, rerun configure with --enable-multilib. If you do not have them, and want to build a 64-bit-only compiler, rerun configure with --disable-multilib.

操作系统: centos 7.5 64bit

解决:
编译32位的程序

sudo yum install glibc-devel.i686
sudo yum install libgcc.i686

你可能感兴趣的:(linux,linux,gcc,glibc)