- Mitglied seit
- 26 Nov 2005
- Beiträge
- 434
- Punkte für Reaktionen
- 11
- Punkte
- 18
Wollte auf einer neuen VM in der google cloud die unter Debian 9.4 läuft ein Image bauen, das schläft fehl.
Was läuft hier falsch? Fehlt mir ein Paket? braucht es für Debian 9.4 noch eine Anpassung?
Code:
touch /home/username/freetz-trunk/source/host-tools/sfk-1.9.1/.unpacked
(cd /home/username/freetz-trunk/source/host-tools/sfk-1.9.1; rm -f config.cache; \
./configure \
--prefix=/home/username/freetz-trunk/tools \
--disable-nls \
);
configure: WARNING: unrecognized options: --disable-nls
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /bin/mkdir -p
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for g++... g++
checking whether the C++ compiler works... yes
checking for C++ compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking for style of include used by make... GNU
checking dependency style of g++... gcc3
configure: creating ./config.status
config.status: creating Makefile
config.status: creating config.h
config.status: executing depfiles commands
configure: WARNING: unrecognized options: --disable-nls
touch /home/username/freetz-trunk/source/host-tools/sfk-1.9.1/.configured
make -j2 -C /home/username/freetz-trunk/source/host-tools/sfk-1.9.1 all
make[1]: Entering directory '/home/username/freetz-trunk/source/host-tools/sfk-1.9.1'
make all-am
make[2]: Entering directory '/home/username/freetz-trunk/source/host-tools/sfk-1.9.1'
depbase=`echo sfk.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
g++ -DHAVE_CONFIG_H -I. -g -O2 -MT sfk.o -MD -MP -MF $depbase.Tpo -c -o sfk.o sfk.cpp &&\
mv -f $depbase.Tpo $depbase.Po
depbase=`echo sfkext.o | sed 's|[^/]*$|.deps/&|;s|\.o$||'`;\
g++ -DHAVE_CONFIG_H -I. -g -O2 -MT sfkext.o -MD -MP -MF $depbase.Tpo -c -o sfkext.o sfkext.cpp &&\
mv -f $depbase.Tpo $depbase.Po
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See <file:///usr/share/doc/gcc-6/README.Bugs> for instructions.
Makefile:299: recipe for target 'sfk.o' failed
make[2]: *** [sfk.o] Error 4
make[2]: Leaving directory '/home/username/freetz-trunk/source/host-tools/sfk-1.9.1'
Makefile:178: recipe for target 'all' failed
make[1]: *** [all] Error 2
make[1]: Leaving directory '/home/username/freetz-trunk/source/host-tools/sfk-1.9.1'
tools/make/sfk-host/sfk-host.mk:29: recipe for target '/home/username/freetz-trunk/source/host-tools/sfk-1.9.1/sfk' failed
make: *** [/home/username/freetz-trunk/source/host-tools/sfk-1.9.1/sfk] Error 2
Was läuft hier falsch? Fehlt mir ein Paket? braucht es für Debian 9.4 noch eine Anpassung?