c++ - Building gcc 4.8.4 from source: cp-cilkplus.o no such file or directory -


i try build gcc 4.8.4 source under fedora 25. have gcc 6.4.1. have installed bison, flex, gmp, mpfr, mpc.

the following configuration used:

configure --prefix /home/installations/gcc48 --enable-languages=c,c++ \ --disable-multilib --enable-threads=posix --disable-nls \ --disable-bootstrap --disable-checking --enable-multiarch \ --enable-shared --program-suffix=4.8 --with-system-zlib \ --with-tune=generic --without-included-gettext 

but, when run

make -j4 

i error:

opening cp/cp-cilkplus.o: no such file or directory ../../gcc-4.8.4/gcc/cp/make-lang.in:95: recipe target 'cc1plus-checksum.c' failed make[2]: *** [cc1plus-checksum.c] error 1 make[2]: *** waiting unfinished jobs.... making symbolic directory links fixing directory /usr/include /home/installations/objdir/gcc/include-fixed ........ cleaning unneeded directories: fixincludes done echo timestamp > stmp-fixinc rm gcc.pod make[2]: leaving directory '/home/installations/gcc48/gcc' makefile:3920: recipe target 'all-gcc' failed make[1]: *** [all-gcc] error 2 make[1]: leaving directory '/home/installations/gcc48' makefile:864: recipe target 'all' failed make: *** [all] error 2 

what wrong? should check?


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -