Line 146... |
Line 146... |
# Don't do the stage1 build of gcc for Linux (default is to build stage1).
|
# Don't do the stage1 build of gcc for Linux (default is to build stage1).
|
|
|
# --no-uclibc-stage2
|
# --no-uclibc-stage2
|
# Don't do the stage2 build of gcc for Linux (default is to build stage2).
|
# Don't do the stage2 build of gcc for Linux (default is to build stage2).
|
|
|
|
# --make-load <number>
|
|
# Set make load for make to <number>
|
|
|
# --help
|
# --help
|
# List these options and exit
|
# List these options and exit
|
|
|
# In general global variables track each of these options. In addition the
|
# In general global variables track each of these options. In addition the
|
# following global variables are used:
|
# following global variables are used:
|
Line 340... |
Line 343... |
|
|
--no-uclibc-stage2)
|
--no-uclibc-stage2)
|
uclibc_stage2_flag="false";
|
uclibc_stage2_flag="false";
|
;;
|
;;
|
|
|
|
--make-load)
|
|
make_load="-j $2 -l $2";
|
|
shift;
|
|
;;
|
|
|
--help)
|
--help)
|
cat <<EOF;
|
cat <<EOF;
|
--force
|
--force
|
Ensure the unified source directory and build directories are
|
Ensure the unified source directory and build directories are
|
recreated. Only build directories of targets being built are removed.
|
recreated. Only build directories of targets being built are removed.
|
Line 388... |
Line 396... |
Source directory for gcc (default gcc-4.5.1')
|
Source directory for gcc (default gcc-4.5.1')
|
|
|
--newlib-dir
|
--newlib-dir
|
Source directory for newlib (default newlib-1.18.0)
|
Source directory for newlib (default newlib-1.18.0)
|
|
|
--uclibc_dir
|
--uclibc-dir
|
Source directory for uClibc (default uclibc-0.9.31)
|
Source directory for uClibc (default uclibc-0.9.31)
|
|
|
--gdb_dir
|
--gdb-dir
|
Source directory for gdb (default gdb-7.2)
|
Source directory for gdb (default gdb-7.2)
|
|
|
--linux_dir
|
--linux-dir
|
Source directory for Linux (default linux-2.6.35)
|
Source directory for Linux (default linux-2.6.35)
|
|
|
--no-or32-elf
|
--no-or32-elf
|
Don't configure, build and install the newlib (or32-elf) tool chain.
|
Don't configure, build and install the newlib (or32-elf) tool chain.
|
|
|
Line 437... |
Line 445... |
Don't do the stage1 build of gcc for Linux (default is to build stage1).
|
Don't do the stage1 build of gcc for Linux (default is to build stage1).
|
|
|
--no-uclibc-stage2
|
--no-uclibc-stage2
|
Don't do the stage2 build of gcc for Linux (default is to build stage2).
|
Don't do the stage2 build of gcc for Linux (default is to build stage2).
|
|
|
|
--make-load <num>
|
|
Set make load passed with -j and -l options when calling make. Default
|
|
is set to number of processors as detected via /proc/cpuinfo
|
|
|
--help
|
--help
|
List these options and exit
|
List these options and exit
|
EOF
|
EOF
|
exit 0
|
exit 0
|
;;
|
;;
|