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
3d84f80f
Commit
3d84f80f
authored
Jan 27, 2001
by
Alexandre Oliva
Committed by
Alexandre Oliva
Jan 27, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Makefile.in: Remove uses of + before $(MAKE).
From-SVN: r39295
parent
c9e8ee87
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
+10
-6
gcc/ChangeLog
+4
-0
gcc/Makefile.in
+6
-6
No files found.
gcc/ChangeLog
View file @
3d84f80f
2001-01-27 Alexandre Oliva <aoliva@redhat.com>
* Makefile.in: Remove uses of + before $(MAKE).
2001-01-26 Richard Henderson <rth@redhat.com>
2001-01-26 Richard Henderson <rth@redhat.com>
* stmt.c (cost_table): Remove.
* stmt.c (cost_table): Remove.
...
...
gcc/Makefile.in
View file @
3d84f80f
...
@@ -2872,7 +2872,7 @@ STAGE2_FLAGS_TO_PASS = \
...
@@ -2872,7 +2872,7 @@ STAGE2_FLAGS_TO_PASS = \
# we can guarantee will build with the native compiler, and also it is the
# we can guarantee will build with the native compiler, and also it is the
# only thing useful for building stage2.
# only thing useful for building stage2.
stage1_build
:
stage1_build
:
+
$(MAKE)
CC
=
"
$(CC)
"
libdir
=
$(libdir)
LANGUAGES
=
"
$(BOOT_LANGUAGES)
"
$(MAKE)
CC
=
"
$(CC)
"
libdir
=
$(libdir)
LANGUAGES
=
"
$(BOOT_LANGUAGES)
"
touch stage1_build
touch stage1_build
echo
stage1_build
>
stage_last
echo
stage1_build
>
stage_last
...
@@ -2887,19 +2887,19 @@ stage1_copy: stage1_build
...
@@ -2887,19 +2887,19 @@ stage1_copy: stage1_build
# because alloca.o is newer, we permit these recursive makes to compile
# because alloca.o is newer, we permit these recursive makes to compile
# alloca.o. Then cc1 is newer, so it won't have to be relinked.
# alloca.o. Then cc1 is newer, so it won't have to be relinked.
stage2_build
:
stage1_copy
stage2_build
:
stage1_copy
+
$(MAKE)
CC
=
"stage1/xgcc
$(exeext)
-Bstage1/ -B
$(build_tooldir)
/bin/"
\
$(MAKE)
CC
=
"stage1/xgcc
$(exeext)
-Bstage1/ -B
$(build_tooldir)
/bin/"
\
STAGE_PREFIX
=
stage1/
\
STAGE_PREFIX
=
stage1/
\
$(STAGE2_FLAGS_TO_PASS)
$(STAGE2_FLAGS_TO_PASS)
touch stage2_build
touch stage2_build
echo
stage2_build
>
stage_last
echo
stage2_build
>
stage_last
stage2_copy
:
stage2_build
stage2_copy
:
stage2_build
+
$(MAKE)
stage2
$(MAKE)
stage2
touch stage2_copy
touch stage2_copy
echo
stage3_build
>
stage_last
echo
stage3_build
>
stage_last
stage3_build
:
stage2_copy
stage3_build
:
stage2_copy
+
$(MAKE)
CC
=
"stage2/xgcc
$(exeext)
-Bstage2/ -B
$(build_tooldir)
/bin/"
\
$(MAKE)
CC
=
"stage2/xgcc
$(exeext)
-Bstage2/ -B
$(build_tooldir)
/bin/"
\
STAGE_PREFIX
=
stage2/
\
STAGE_PREFIX
=
stage2/
\
$(STAGE2_FLAGS_TO_PASS)
$(STAGE2_FLAGS_TO_PASS)
touch stage3_build
touch stage3_build
...
@@ -2907,12 +2907,12 @@ stage3_build: stage2_copy
...
@@ -2907,12 +2907,12 @@ stage3_build: stage2_copy
# For bootstrap4:
# For bootstrap4:
stage3_copy
:
stage3_build
stage3_copy
:
stage3_build
+
$(MAKE)
stage3
$(MAKE)
stage3
touch stage3_copy
touch stage3_copy
echo
stage4_build
>
stage_last
echo
stage4_build
>
stage_last
stage4_build
:
stage3_copy
stage4_build
:
stage3_copy
+
$(MAKE)
CC
=
"stage3/xgcc
$(exeext)
-B
$(build_tooldir)
/bin/ -Bstage3/"
\
$(MAKE)
CC
=
"stage3/xgcc
$(exeext)
-B
$(build_tooldir)
/bin/ -Bstage3/"
\
STAGE_PREFIX
=
stage3/
\
STAGE_PREFIX
=
stage3/
\
$(STAGE2_FLAGS_TO_PASS)
$(STAGE2_FLAGS_TO_PASS)
touch stage4_build
touch stage4_build
...
...
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