Что это за ошибка GCC в Linux, и как ее решить? gcc: внутренняя ошибка компилятора: недопустимая инструкция (программа как)

Я печатаюgcc hello.c и это появляется:

gcc: internal compiler error: Illegal instruction (program as)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-4.6/README.Bugs> for instructions.

hello.c это просто:

int main()
{
 return 0;
}

Я не могу придумать, как это сделать проще! (То же самое случилось сprintf там.)

Итак: как вы это исправите? Я на Raspian, на Raspberry Pi.

редактировать

GCC-V дает

Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/arm-linux-gnueabihf/4.6/lto-wrapper
Target: arm-linux-gnueabihf
Configured with: ../src/configure -v --with-pkgversion='Debian 4.6.3-14+rpi1' --with-bugurl=file:///usr/share/doc/gcc-4.6/README.Bugs --enable-languages=c,c++,fortran,objc,obj-c++ --prefix=/usr --program-suffix=-4.6 --enable-shared --enable-linker-build-id --with-system-zlib --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --with-gxx-include-dir=/usr/include/c++/4.6 --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --enable-gnu-unique-object --enable-plugin --enable-objc-gc --disable-sjlj-exceptions --with-arch=armv6 --with-fpu=vfp --with-float=hard --enable-checking=release --build=arm-linux-gnueabihf --host=arm-linux-gnueabihf --target=arm-linux-gnueabihf
Thread model: posix
gcc version 4.6.3 (Debian 4.6.3-14+rpi1) 

Нет, я не установил это.

Что касается обновлений,sudo apt-get install gcc дает

Reading package lists... Done
Building dependency tree       
Reading state information... Done
gcc is already the newest version.
0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.

Да, вы можете запуститьasэто говоритIllegal instruction без аргументов.

Я понятия не имею, что такое пространство подкачки.

gcc -O0 -g hello.c выдает ту же ошибку.

GCC не распознает--enable-debug.

Ответы на вопрос(5)

Ваш ответ на вопрос