Forum Replies Created
-
AuthorPosts
-
SgalperinParticipant
The C++ installation got me farther than ever, the build took over 2 hours to fail. Now it’s missing stdio.h.
/c/gnu/gcc-4.8.1-build/./gcc/xgcc -B/c/gnu/gcc-4.8.1-build/./gcc/ -B/c/gnu/out/powerpc-ibm-eabi/bin/ -B/c/gnu/out/powerpc-ibm-ea
bi/lib/ -isystem /c/gnu/out/powerpc-ibm-eabi/include -isystem /c/gnu/out/powerpc-ibm-eabi/sys-include -g -O2 -msoft-float -mr
elocatable-lib -mno-eabi -mstrict-align -O2 -g -O2 -DIN_GCC -DCROSS_DIRECTORY_STRUCTURE -W -Wall -Wwrite-strings -Wcast-qual –
Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -isystem ./include -g -DIN_LIBGCC2 -fbuilding-libgcc -fno-stac
k-protector -I. -I. -I../../.././gcc -I../../../../gcc-4.8.1/libgcc -I../../../../gcc-4.8.1/libgcc/. -I../../../../gcc-4.8.1/l
ibgcc/../gcc -I../../../../gcc-4.8.1/libgcc/../include -o _muldi3.o -MT _muldi3.o -MD -MP -MF _muldi3.dep -DL_muldi3 -c ../..
/../../gcc-4.8.1/libgcc/libgcc2.c -fvisibility=hidden -DHIDE_EXPORTS
In file included from ../../../../gcc-4.8.1/libgcc/libgcc2.c:27:0:
../../../../gcc-4.8.1/libgcc/../gcc/tsystem.h:87:19: fatal error: stdio.h: No such file or directory
#include
^
compilation terminated.
make[4]: *** [_muldi3.o] Error 1
make[4]: Leaving directory `/c/gnu/gcc-4.8.1-build/powerpc-ibm-eabi/nof/libgcc’
make[3]: *** [multi-do] Error 1SgalperinParticipantThe source of the error appears to be in the build for the std lib. It’s looking for g++ as a compiler which isn’t in the MinGW distribution.
From config.log in the libcpp directory:
configure:4850: result: yes
configure:4901: g++ -c conftest.cpp >&5
/c/gnu/gcc-4.8.1/libcpp/configure: line 1495: g++: command not found
configure:4901: $? = 127
configure: failed program was:SgalperinParticipantOK. I have everything downloaded and put in directories as advised by the folks at GNU. When make goes into the ./libcpp directory it errors out. Here is the display:
configure: loading cache ./config.cache
checking build system type… i686-pc-mingw32
checking host system type… i686-pc-mingw32
checking target system type… powerpc-ibm-eabi
checking whether make sets $(MAKE)… yes
checking for a BSD-compatible install… /bin/install -c
checking for i686-pc-mingw32-gcc… gcc
checking for C compiler default output file name… a.exe
checking whether the C compiler works… yes
checking whether we are cross compiling… no
checking for suffix of executables… .exe
checking for suffix of object files… o
checking whether we are using the GNU C compiler… yes
checking whether gcc accepts -g… yes
checking for gcc option to accept ISO C89… none needed
checking whether we are using the GNU C++ compiler… no
checking whether g++ accepts -g… no
checking for i686-pc-mingw32-ranlib… ranlib
checking how to run the C preprocessor… gcc -E
checking for grep that handles long lines and -e… /bin/grep
checking for egrep… /bin/grep -E
checking for ANSI C header files… yes
checking for sys/types.h… yes
checking for sys/stat.h… yes
checking for stdlib.h… yes
checking for string.h… yes
checking for memory.h… yes
checking for strings.h… yes
checking for inttypes.h… yes
checking for stdint.h… yes
checking for unistd.h… yes
checking minix/config.h usability… no
checking minix/config.h presence… no
checking for minix/config.h… no
checking whether it is safe to define __EXTENSIONS__… yes
checking for special C compiler options needed for large files… no
checking for _FILE_OFFSET_BITS value needed for large files… unknown
checking for _LARGE_FILES value needed for large files… unknown
checking for aclocal… no
checking for autoconf… no
checking for autoheader… no
checking whether gcc supports -W… yes
checking whether gcc supports -Wall… yes
checking whether gcc supports -Wnarrowing… no
checking whether gcc supports -Wwrite-strings… yes
checking whether gcc supports -Wmissing-format-attribute… yes
checking whether gcc supports -Wstrict-prototypes… yes
checking whether gcc supports -Wmissing-prototypes… yes
checking whether gcc supports -Wold-style-definition… yes
checking whether gcc supports -Wc++-compat… yes
checking whether gcc supports -pedantic -Wlong-long… yes
checking whether gcc supports -fno-exceptions… yes
checking whether gcc supports -fno-rtti… yes
configure: error: C++ compiler missing or inoperational
make[1]: *** [configure-libcpp] Error 1
make[1]: Leaving directory `/c/gnu/gcc-4.8.1-build’
make: *** [all] Error 2SgalperinParticipantOK, got all the extraneous compilers out of the path, including cc.exe in the MinGWbin directory.
Now it’s asking for GMP, MPFR and MPC. I’m assuming that they need the same style directory structure that I used for binuitls and gcc. However they don’t take the –target option on configure. Any suggestions?
SgalperinParticipantHow does COLLECT_GCC get set?
-
AuthorPosts