diff options
author | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-25 08:21:47 +0000 |
---|---|---|
committer | ghazi <ghazi@138bc75d-0d04-0410-961f-82ee72b054a4> | 1999-06-25 08:21:47 +0000 |
commit | d66483924fdf71d7ed2260b4e1d4aad0d8f6426d (patch) | |
tree | e7fa09ea6d3316438308f0cb1e0a2a944c1a0b98 /gcc/ch | |
parent | 6277ee550781b466bcaba92ac7b0e861e7e6d972 (diff) | |
download | gcc-d66483924fdf71d7ed2260b4e1d4aad0d8f6426d.tar.gz |
SMP bootstrap fixes for chill:
* Make-lang.in (CHILL.stage1): Depend on stage1-start.
(CHILL.stage2): Likewise for stage2-start.
(CHILL.stage3): Likewise for stage3-start.
(CHILL.stage4): Likewise for stage4-start.
SMP bootstrap fixes for java:
* Make-lang.in (java.stage1): Depend on stage1-start.
(java.stage2): Likewise for stage2-start.
(java.stage3): Likewise for stage3-start.
(java.stage4): Likewise for stage4-start.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@27766 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/ch')
-rw-r--r-- | gcc/ch/ChangeLog | 7 | ||||
-rw-r--r-- | gcc/ch/Make-lang.in | 8 |
2 files changed, 11 insertions, 4 deletions
diff --git a/gcc/ch/ChangeLog b/gcc/ch/ChangeLog index 290c07dc107..209a5d3251a 100644 --- a/gcc/ch/ChangeLog +++ b/gcc/ch/ChangeLog @@ -1,3 +1,10 @@ +1999-06-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu> + + * Make-lang.in (CHILL.stage1): Depend on stage1-start. + (CHILL.stage2): Likewise for stage2-start. + (CHILL.stage3): Likewise for stage3-start. + (CHILL.stage4): Likewise for stage4-start. + Tue May 18 00:21:34 1999 Zack Weinberg <zack@rabi.phys.columbia.edu> * lang-specs.h: Define __GNUC__ and __GNUC_MINOR__ only if -no-gcc diff --git a/gcc/ch/Make-lang.in b/gcc/ch/Make-lang.in index 7bd86edc38a..958d085ccc2 100644 --- a/gcc/ch/Make-lang.in +++ b/gcc/ch/Make-lang.in @@ -175,13 +175,13 @@ CHILL.maintainer-clean: # Stage hooks: # The main makefile has already created stage?/ch. -CHILL.stage1: +CHILL.stage1: stage1-start -mv ch/*.o stage1/ch -CHILL.stage2: +CHILL.stage2: stage2-start -mv ch/*.o stage2/ch -CHILL.stage3: +CHILL.stage3: stage3-start -mv ch/*.o stage3/ch -CHILL.stage4: +CHILL.stage4: stage4-start -mv ch/*.o stage4/ch # # Maintenance hooks: |