This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
make LANGUAGES
- To: help-gcc at gnu dot org
- Subject: make LANGUAGES
- From: Michael P DiGioia <mpd at world dot std dot com>
- Date: Wed, 27 Oct 1999 13:05:56 -0400 (EDT)
Hi,
I have gcc 2.8.1 and have this problem when I do make LANGUAGES using
the std make tools on my sunos4 system -
make LANGUAGES=c c++
pernix3% make stage1
if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
for dir in . cp objc ; \
do \
if [ -d stage1/$dir ] ; then true ; else mkdir stage1/$dir ; fi ; \
done
mv *.o insn-flags.h insn-config.h insn-codes.h insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c insn-attr.h insn-attrtab.c insn-opinit.c s-flags s-config s-codes s-mlib s-output s-recog s-emit s-extract s-peep s-attr s-attrtab s-opinit s-proto s-crt s-crtS s-crt0 genemit genoutput genrecog genextract genflags gencodes genconfig genpeep genattrtab genattr genopinit bc-arity.h bc-opcode.h bc-opname.h s-bcarity s-bcopcode s-bcopname bi-arity bi-opcode bi-opname xgcc cc1 cpp gcc-cross cccp cc1obj enquire protoize unprotoize specs collect2 underscore.c gcov *.bp *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack *.[si] g++ g++-cross cc1plus stage1
mv: s-mlib: Cannot access: No such file or directory
mv: s-proto: Cannot access: No such file or directory
mv: s-crt: Cannot access: No such file or directory
mv: s-crtS: Cannot access: No such file or directory
mv: s-crt0: Cannot access: No such file or directory
mv: xgcc: Cannot access: No such file or directory
mv: cc1: Cannot access: No such file or directory
mv: cpp: Cannot access: No such file or directory
mv: gcc-cross: Cannot access: No such file or directory
mv: cccp: Cannot access: No such file or directory
*******************
Does anyone know why?
/mpd