added static build option
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@229 c046a42c-6fe2-441c-8c8c-71466251a162
diff --git a/configure b/configure
index 6025621..9a7a5f9 100755
--- a/configure
+++ b/configure
@@ -20,6 +20,7 @@
# default parameters
prefix="/usr/local"
interp_prefix="/usr/gnemul/qemu-i386"
+static="no"
cross_prefix=""
cc="gcc"
host_cc="gcc"
@@ -104,6 +105,8 @@
;;
--enable-gprof) gprof="yes"
;;
+ --static) static="yes"
+ ;;
esac
done
@@ -176,19 +179,22 @@
echo " --cross-prefix=PREFIX use PREFIX for compile tools [$cross_prefix]"
echo " --cc=CC use C compiler CC [$cc]"
echo " --make=MAKE use specified make [$make]"
+echo " --static enable static build [$static]"
echo ""
echo "NOTE: The object files are build at the place where configure is launched"
exit 1
fi
-echo "Install prefix $prefix"
-echo "Source path $source_path"
-echo "C compiler $cc"
-echo "make $make"
-echo "host CPU $cpu"
-echo "Big Endian $bigendian"
-echo "target CPU $target_cpu"
-echo "gprof enabled $gprof"
+echo "Install prefix $prefix"
+echo "Source path $source_path"
+echo "ELF interp prefix $interp_prefix"
+echo "C compiler $cc"
+echo "make $make"
+echo "host CPU $cpu"
+echo "Big Endian $bigendian"
+echo "target CPU $target_cpu"
+echo "gprof enabled $gprof"
+echo "static build $static"
echo "Creating config.mak and config.h"
@@ -244,6 +250,9 @@
echo "TARGET_GPROF=yes" >> config.mak
echo "#define HAVE_GPROF 1" >> $TMPH
fi
+if test "$static" = "yes" ; then
+ echo "CONFIG_STATIC=yes" >> config.mak
+fi
echo -n "VERSION=" >>config.mak
head $source_path/VERSION >>config.mak
echo "" >>config.mak