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
ec20b1b9
Commit
ec20b1b9
authored
Sep 11, 1997
by
Jeffrey A Law
Committed by
Jeff Law
Sep 10, 1997
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* Makefile.in (bootstrap): New target.
From-SVN: r15399
parent
1791f8e2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
0 deletions
+29
-0
ChangeLog
+4
-0
Makefile.in
+25
-0
No files found.
ChangeLog
View file @
ec20b1b9
Wed Sep 10 21:29:54 1997 Jeffrey A Law (law@cygnus.com)
* Makefile.in (bootstrap): New target.
Wed Sep 10 15:19:22 1997 Jeffrey A Law (law@cygnus.com)
* config.sub: Accept 'amigados' for backward compatability.
...
...
Makefile.in
View file @
ec20b1b9
...
...
@@ -1284,6 +1284,31 @@ all-bootstrap:
true
;
\
fi
# Building GCC uses some tools for rebuilding "source" files
# like texinfo, bison/byacc, etc. So we must depend on those.
#
# While building GCC, it may be necessary to run various target
# programs like the assembler, linker, etc. So we depend on
# those too.
#
# In theory, on an SMP all those dependencies can be resolved
# in parallel.
#
.PHONY
:
bootstrap
bootstrap
:
all-texinfo all-bison all-byacc all-binutils all-gas all-ld
@
r
=
`
pwd
`
;
export
r
;
\
s
=
`
cd
$(srcdir)
;
pwd
`
;
export
s
;
\
$(SET_LIB_PATH)
\
echo
"Bootstrapping the compiler with -O2 -g"
;
\
cd
gcc
;
$(MAKE)
$(GCC_FLAGS_TO_PASS)
BOOT_CFLAGS
=
"-O2 -g"
bootstrap
@
r
=
`
pwd
`
;
export
r
;
\
s
=
`
cd
$(srcdir)
;
pwd
`
;
export
s
;
\
$(SET_LIB_PATH)
\
echo
"Comparing stage2 and stage3 of the compiler"
;
\
cd
gcc
;
$(MAKE)
$(GCC_FLAGS_TO_PASS)
BOOT_CFLAGS
=
"-O2 -g"
compare
@
echo
"Building runtime libraries"
;
\
$(MAKE)
all
.PHONY
:
check-gcc
check-gcc
:
@
if
[
-f
./gcc/Makefile
]
;
then
\
...
...
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