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
9d3d50d2
Commit
9d3d50d2
authored
Aug 21, 2003
by
Mark Mitchell
Committed by
Mark Mitchell
Aug 21, 2003
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* gcc_build: Fix handling of -t option. Add -x option.
From-SVN: r70658
parent
c79c6c5b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
4 deletions
+12
-4
contrib/ChangeLog
+4
-0
contrib/gcc_build
+8
-4
No files found.
contrib/ChangeLog
View file @
9d3d50d2
2003
-
08
-
21
Mark
Mitchell
<
mark
@codesourcery
.
com
>
*
gcc_build
:
Fix
handling
of
-
t
option
.
Add
-
x
option
.
2003
-
07
-
31
Matt
Kraai
<
kraai
@alumni
.
cmu
.
edu
>
*
texi2pod
.
pl
:
Remove
extra
line
.
...
...
contrib/gcc_build
View file @
9d3d50d2
...
...
@@ -66,6 +66,7 @@ gcc_build [-c configure_options]
[-u username]
[-p protocol]
[-t tarfile]
[-x make_check_options]
[bootstrap]
[build]
[checkout]
...
...
@@ -174,7 +175,7 @@ test_gcc() {
changedir
${
OBJDIR
}
echo
"Running tests... This will take a while."
${
MAKE
}
-k
check
eval
\$
{
MAKE
}
-k
${
MAKE_CHECK_OPTIONS
}
check
${
DESTINATION
}
/contrib/test_summary
}
...
...
@@ -233,8 +234,10 @@ TARFILE="${HOME}/dev/gcc.tgz"
CONFIGURE_OPTIONS
=
# The `make' program.
MAKE
=
${
MAKE
:-
make
}
# Options to pass to
make
.
# Options to pass to
"make bootstrap"
.
MAKE_BOOTSTRAP_OPTIONS
=
# Options to pass to "make check".
MAKE_CHECK_OPTIONS
=
# Modes of operation
BOOTSTRAP
=
0
...
...
@@ -250,14 +253,15 @@ UPDATE=0
########################################################################
# Parse the options.
while
getopts
"c:d:m:o:p:t:u:"
ARG
;
do
while
getopts
"c:d:m:o:p:t:u:
x:
"
ARG
;
do
case
$ARG
in
c
)
CONFIGURE_OPTIONS
=
"
${
OPTARG
}
"
;;
d
)
DESTINATION
=
"
${
OPTARG
}
"
;;
m
)
MAKE_BOOTSTRAP_OPTIONS
=
"
${
OPTARG
}
"
;;
o
)
OBJDIR
=
"
${
OPTARG
}
"
;;
p
)
CVS_PROTOCOL
=
"
${
OPTARG
}
"
;;
t
)
CVS_TARGFILE
=
"
${
OPTARG
}
"
;;
t
)
TARFILE
=
"
${
OPTARG
}
"
;;
x
)
MAKE_CHECK_OPTIONS
=
"
${
OPTARG
}
"
;;
u
)
CVS_USERNAME
=
"
${
OPTARG
}
"
;;
\?
)
usage
;;
esac
...
...
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