diff options
author | bellard | 2003-06-09 21:53:12 +0200 |
---|---|---|
committer | bellard | 2003-06-09 21:53:12 +0200 |
commit | 43ce4dfe9efd48694cc7e9312f4e845304b2e532 (patch) | |
tree | 18b6550bb9c9cc882eda34a1ce05414edd88f824 /configure | |
parent | alpha fix (diff) | |
download | qemu-43ce4dfe9efd48694cc7e9312f4e845304b2e532.tar.gz qemu-43ce4dfe9efd48694cc7e9312f4e845304b2e532.tar.xz qemu-43ce4dfe9efd48694cc7e9312f4e845304b2e532.zip |
added static build option
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@229 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 25 |
1 files changed, 17 insertions, 8 deletions
@@ -20,6 +20,7 @@ TMPH="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.h" # default parameters prefix="/usr/local" interp_prefix="/usr/gnemul/qemu-i386" +static="no" cross_prefix="" cc="gcc" host_cc="gcc" @@ -104,6 +105,8 @@ for opt do ;; --enable-gprof) gprof="yes" ;; + --static) static="yes" + ;; esac done @@ -176,19 +179,22 @@ echo " --source-path=PATH path of source code [$source_path]" 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 @@ if test "$gprof" = "yes" ; then 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 |