gcc编译错误

gcc编译错误

我之前在 Ubuntu 14.04 32 位上为 MIPS 平台构建了一个交叉编译器。但是现在我无法使用 GCC 编译普通的 C 程序。我删除并重新安装了所有内容,但每次都出现此错误。例如:

unrecognized option '--32' 

我得到gcc --version了这个:

 GNU assembler 2.13.2 Copyright 2002 Free Software Foundation, Inc. This program is free software; you may redistribute it under the terms of the GNU General Public License. This program has absolutely no warranty. This assembler was configured for a target of `mips-dec-ultrix42'. 

我不知道该怎么办!

答案1

首先找到编译器:

find ${PATH//:/} -name 'gcc*'

创建符号链接:

cd /usr/bin/
ls -l | grep gcc
ln -sf gcc-4.xx gcc

现在再次检查版本:

gcc --version

相关内容