Commit 8a3d997e by Mark Mitchell Committed by Mark Mitchell

* gcc_build: Add -o option for setting the objdir to use.

From-SVN: r37397
parent d96a6d1a
Sat Nov 11 17:29:03 2000 Mark P Mitchell <mark@codesourcery.com>
* gcc_build: Add -o option for setting the objdir to use.
2000-11-11 Jeff Law <law@redhat.com>, 2000-11-11 Jeff Law <law@redhat.com>,
* release: New file. * release: New file.
......
...@@ -62,6 +62,7 @@ cat <<EOF ...@@ -62,6 +62,7 @@ cat <<EOF
gcc_build [-c configure_options] gcc_build [-c configure_options]
[-d destination_directory] [-d destination_directory]
[-m make_boot_options] [-m make_boot_options]
[-o objdir]
[-u username] [-u username]
[-p protocol] [-p protocol]
[-t tarfile] [-t tarfile]
...@@ -250,11 +251,12 @@ UPDATE=0 ...@@ -250,11 +251,12 @@ UPDATE=0
######################################################################## ########################################################################
# Parse the options. # Parse the options.
while getopts "c:d:m:p:t:u:" ARG; do while getopts "c:d:m:o:p:t:u:" ARG; do
case $ARG in case $ARG in
c) CONFIGURE_OPTIONS="${OPTARG}";; c) CONFIGURE_OPTIONS="${OPTARG}";;
d) DESTINATION="${OPTARG}";; d) DESTINATION="${OPTARG}";;
m) MAKE_BOOTSTRAP_OPTIONS="${OPTARG}";; m) MAKE_BOOTSTRAP_OPTIONS="${OPTARG}";;
o) OBJDIR="${OPTARG}";;
p) CVS_PROTOCOL="${OPTARG}";; p) CVS_PROTOCOL="${OPTARG}";;
t) CVS_TARGFILE="${OPTARG}";; t) CVS_TARGFILE="${OPTARG}";;
u) CVS_USERNAME="${OPTARG}";; u) CVS_USERNAME="${OPTARG}";;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment