Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
94fd5176
Commit
94fd5176
authored
Sep 09, 2003
by
Kelley Cook
Committed by
R. Kelley Cook
Sep 09, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert change from yesterday due to parallel make issues.
From-SVN: r71235
parent
22898f9a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
17 deletions
+20
-17
gcc/ChangeLog
+4
-0
gcc/Makefile.in
+16
-17
No files found.
gcc/ChangeLog
View file @
94fd5176
2003-09-08 Kelley Cook <kelleycook@wideopenwest.com>
* Makefile.in: Revert yesterday's change.
2003-09-08 Bernardo Innocenti <bernie@develer.com>
Peter Barada <peter@baradas.org>
...
...
gcc/Makefile.in
View file @
94fd5176
...
...
@@ -223,7 +223,6 @@ STAMP = echo timestamp >
# Make sure the $(MAKE) variable is defined.
@SET_MAKE@
REMAKE
=
$(MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
# --------
# UNSORTED
...
...
@@ -3469,22 +3468,22 @@ unstage1 unstage2 unstage3 unstage4 unstageprofile unstagefeedback:
echo
$$
{
stage
}
_build
>
stage_last
restage1
:
unstage1
$(
RE
MAKE)
stage1_build
$(MAKE)
stage1_build
restage2
:
unstage2
$(
REMAKE)
stage2_build
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage2_build
restage3
:
unstage3
$(
REMAKE)
stage3_build
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage3_build
restage4
:
unstage4
$(
REMAKE)
stage4_build
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage4_build
restageprofile
:
unstageprofile
$(
REMAKE)
stageprofile_build
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stageprofile_build
restagefeedback
:
unstagefeedback
$(
REMAKE)
stagefeedback_build
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stagefeedback_build
# Bubble up a bugfix through all the stages. Primarily useful for fixing
# bugs that cause the compiler to crash while building stage 2.
...
...
@@ -3492,31 +3491,31 @@ bubblestrap:
if
test
-f
stage_last
;
then
\
LAST
=
`
sed
-e
's/_build//'
< stage_last
`
;
\
if
test
"
$$
LAST"
!=
"stage1"
;
then
\
$(
RE
MAKE)
$$
LAST
;
\
$(MAKE)
$$
LAST
;
\
$(STAMP)
$$
{
LAST
}
_copy
;
\
fi
;
\
fi
if
test
-f
stage1_copy
;
then
$(MAKE)
unstage1
;
fi
$(
REMAKE)
stage1_copy
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage1_copy
if
test
-f
stage2_copy
;
then
$(MAKE)
unstage2
;
fi
$(
REMAKE)
stage2_copy
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage2_copy
if
test
-f
stage3_copy
;
then
$(MAKE)
unstage3
;
fi
$(
REMAKE)
stage3_build
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage3_build
if
test
-f
stage4_copy
;
then
\
$(
RE
MAKE)
stage3_copy
;
$(MAKE)
unstage4
;
\
$(
REMAKE)
stage4_build
||
exit
1
;
\
$(MAKE)
stage3_copy
;
$(MAKE)
unstage4
;
\
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
stage4_build
||
exit
1
;
\
fi
quickstrap
:
if
test
-f
stage_last
;
then
\
LAST
=
`
cat
stage_last
`
;
rm
$$
LAST
;
$(
REMAKE)
$$
LAST
;
\
LAST
=
`
cat
stage_last
`
;
rm
$$
LAST
;
$(
MAKE)
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
LANGUAGES
=
"
$(LANGUAGES)
"
$$
LAST
;
\
else
\
$(
RE
MAKE)
stage1_build
;
\
$(MAKE)
stage1_build
;
\
fi
cleanstrap
:
-
$(MAKE)
clean
$(
REMAKE)
bootstrap
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
bootstrap
unstrap
:
-
rm
-rf
stage[234]
*
...
...
@@ -3527,7 +3526,7 @@ unstrap:
# not from scratch.
restrap
:
$(MAKE)
unstrap
$(
REMAKE)
bootstrap
$(
MAKE)
LANGUAGES
=
"
$(LANGUAGES)
"
BOOT_CFLAGS
=
"
$(BOOT_CFLAGS)
"
bootstrap
# Compare the object files in the current directory with those in the
# stage2 directory.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment