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
d3d6410d
Commit
d3d6410d
authored
Oct 29, 2000
by
Mark Mitchell
Committed by
Mark Mitchell
Oct 29, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc_build: Save the output from CVS into the logfile as well.
From-SVN: r37136
parent
1641a823
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
3 deletions
+7
-3
contrib/ChangeLog
+4
-0
contrib/gcc_build
+3
-3
No files found.
contrib/ChangeLog
View file @
d3d6410d
2000-10-29 Mark Mitchell <mark@codesourcery.com>
* gcc_build: Save the output from CVS into the logfile as well.
2000-10-25 Mark Mitchell <mark@codesourcery.com>
2000-10-25 Mark Mitchell <mark@codesourcery.com>
* gcc_build: Fix typos.
* gcc_build: Fix typos.
...
...
contrib/gcc_build
View file @
d3d6410d
...
@@ -118,7 +118,7 @@ update_gcc() {
...
@@ -118,7 +118,7 @@ update_gcc() {
changedir
${
DESTINATION
}
changedir
${
DESTINATION
}
# Update the tree
# Update the tree
./contrib/gcc_update
||
\
(
./contrib/gcc_update | tee
-a
${
LOGFILE
}
)
||
\
error
"Could not update GCC"
error
"Could not update GCC"
}
}
...
@@ -139,12 +139,12 @@ build_gcc() {
...
@@ -139,12 +139,12 @@ build_gcc() {
# Configure the tree.
# Configure the tree.
(
eval
${
DESTINATION
}
/configure
${
CONFIGURE_OPTIONS
}
|
(
eval
${
DESTINATION
}
/configure
${
CONFIGURE_OPTIONS
}
|
tee
-a
${
LOGFILE
}
)
2>&1
||
\
tee
-a
${
LOGFILE
}
)
2>&1
||
\
error
"Could not configure
the compiler
"
error
"Could not configure
GCC
"
# Bootstrap the compiler
# Bootstrap the compiler
(
eval
make
${
MAKE_OPTIONS
}
bootstrap |
(
eval
make
${
MAKE_OPTIONS
}
bootstrap |
tee
-a
${
LOGFILE
}
)
2>&1
||
\
tee
-a
${
LOGFILE
}
)
2>&1
||
\
error
"Could not build
the compiler
"
error
"Could not build
GCC
"
}
}
# Test GCC.
# Test GCC.
...
...
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