summaryrefslogtreecommitdiffstats
path: root/scripts/buildall.in
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/buildall.in')
-rwxr-xr-xscripts/buildall.in24
1 files changed, 19 insertions, 5 deletions
diff --git a/scripts/buildall.in b/scripts/buildall.in
index e2221043b9..cac75f6d4e 100755
--- a/scripts/buildall.in
+++ b/scripts/buildall.in
@@ -13,13 +13,26 @@ usage()
{
echo "$0 [options] <target_alias>"
echo " options:"
+ echo " -b -- build binutils"
+ echo " -g -- build gcc/newlib"
+ echo " -d -- build gdb"
+ echo " -t -- enable test/debug mode"
echo " -cfg <setup.cache>"
echo " -o <rpm-spec-dir>"
exit 1 ;
}
+testing=no
+do_binutils=no
+do_gccnewlib=no
+do_gdb=no
+
while test $# -ge 1; do
case $1 in
+ -b) do_binutils=yes ; shift;;
+ -g) do_gccnewlib=yes ; shift;;
+ -d) do_gdb=yes ; shift;;
+ -t) do_test=yes ; shift;;
-cfg)
test $# -ge 2 || usage
shift
@@ -43,6 +56,12 @@ while test $# -ge 1; do
esac
done
+if test ${do_binutils} = no -a ${do_gccnewlib} = no -a ${do_gdb} = no ; then
+ echo "You must request building binutils, gcc/newlib, or gdb."
+ usage
+fi
+
+
# This is the full list .. hppa1.1 does not build now.
#ALL_TARGETS="hppa1.1-rtems i386-rtems i960-rtems m68k-rtems \
# m68k-rtemself mips64orion-rtems \
@@ -63,11 +82,6 @@ newlib=${newlib_version}
# also use binutils_rpm_release
buildroot=/tmp
-testing=no
-do_binutils=yes
-do_gccnewlib=yes
-do_gdb=yes
-
#
# Now get started
#