diff options
author | Manfred Hollstein <manfred@s-direktnet.de> | 1998-05-23 22:41:17 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-05-23 16:41:17 -0600 |
commit | 8d45987f209c33339469d5b6d11f695e929c4e23 (patch) | |
tree | b7e4cea9b2d0d3144c6f1e83f28fc35ece73180b /gcc | |
parent | 269df0f8c6e82f4b04f900c43e80e12ada74c8b9 (diff) | |
download | gcc-8d45987f209c33339469d5b6d11f695e929c4e23.zip gcc-8d45987f209c33339469d5b6d11f695e929c4e23.tar.gz gcc-8d45987f209c33339469d5b6d11f695e929c4e23.tar.bz2 |
Makefile.in (all.cross): Swap $(LIBGCC) and $(STMP_FIXPROTO).
* Makefile.in (all.cross): Swap $(LIBGCC) and $(STMP_FIXPROTO).
(rest.encap): Likewise.
From-SVN: r19993
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rw-r--r-- | gcc/Makefile.in | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 1619a6f..73d85fc 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -4,6 +4,9 @@ Sat May 23 23:35:14 1998 Jeffrey A Law (law@cygnus.com) 1998-05-23 Manfred Hollstein <manfred@s-direktnet.de> + * Makefile.in (all.cross): Swap $(LIBGCC) and $(STMP_FIXPROTO). + (rest.encap): Likewise. + * toplev.h (tree_node): Provide global declaration to avoid `limited scope' warnings. diff --git a/gcc/Makefile.in b/gcc/Makefile.in index e44f0eb..f3bbc8f 100644 --- a/gcc/Makefile.in +++ b/gcc/Makefile.in @@ -806,14 +806,14 @@ all.internal: start.encap rest.encap # This is what to compile if making a cross-compiler. # Note that we can compile enquire using the cross-compiler just built, # although we can't run it on this machine. -all.cross: native gcc-cross specs stmp-headers $(LIBGCC) $(STMP_FIXPROTO) \ +all.cross: native gcc-cross specs stmp-headers $(STMP_FIXPROTO) $(LIBGCC) \ $(LIBGCC1_TEST) $(EXTRA_PARTS) lang.all.cross # This is what to compile if making gcc with a cross-compiler. all.build: native xgcc$(exeext) $(EXTRA_PARTS) lang.all.build # This is what must be made before installing GCC and converting libraries. start.encap: native xgcc$(exeext) specs $(LIBGCC1) xlimits.h lang.start.encap # These can't be made until after GCC can run. -rest.encap: stmp-headers $(LIBGCC) $(STMP_FIXPROTO) $(EXTRA_PARTS) lang.rest.encap +rest.encap: stmp-headers $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap # This is what is made with the host's compiler # whether making a cross compiler or not. native: config.status auto-host.h cpp$(exeext) $(LANGUAGES) \ |