/[qemu]/qemu/configure
ViewVC logotype

Diff of /qemu/configure

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by bellard, Tue May 13 18:59:59 2003 UTC revision 1.13 by bellard, Mon Jun 9 19:53:12 2003 UTC
# Line 20  TMPH="${TMPDIR1}/qemu-conf-${RANDOM}-$$- Line 20  TMPH="${TMPDIR1}/qemu-conf-${RANDOM}-$$-
20  # default parameters  # default parameters
21  prefix="/usr/local"  prefix="/usr/local"
22  interp_prefix="/usr/gnemul/qemu-i386"  interp_prefix="/usr/gnemul/qemu-i386"
23    static="no"
24  cross_prefix=""  cross_prefix=""
25  cc="gcc"  cc="gcc"
26  host_cc="gcc"  host_cc="gcc"
# Line 104  for opt do Line 105  for opt do
105    ;;    ;;
106    --enable-gprof) gprof="yes"    --enable-gprof) gprof="yes"
107    ;;    ;;
108      --static) static="yes"
109      ;;
110    esac    esac
111  done  done
112    
# Line 176  echo "  --source-path=PATH       path of Line 179  echo "  --source-path=PATH       path of
179  echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"  echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
180  echo "  --cc=CC                  use C compiler CC [$cc]"  echo "  --cc=CC                  use C compiler CC [$cc]"
181  echo "  --make=MAKE              use specified make [$make]"  echo "  --make=MAKE              use specified make [$make]"
182    echo "  --static                 enable static build [$static]"
183  echo ""  echo ""
184  echo "NOTE: The object files are build at the place where configure is launched"  echo "NOTE: The object files are build at the place where configure is launched"
185  exit 1  exit 1
186  fi  fi
187    
188  echo "Install prefix   $prefix"  echo "Install prefix    $prefix"
189  echo "Source path      $source_path"  echo "Source path       $source_path"
190  echo "C compiler       $cc"  echo "ELF interp prefix $interp_prefix"
191  echo "make             $make"  echo "C compiler        $cc"
192  echo "host CPU         $cpu"  echo "make              $make"
193  echo "Big Endian       $bigendian"  echo "host CPU          $cpu"
194  echo "target CPU       $target_cpu"  echo "Big Endian        $bigendian"
195  echo "gprof enabled    $gprof"  echo "target CPU        $target_cpu"
196    echo "gprof enabled     $gprof"
197    echo "static build      $static"
198    
199  echo "Creating config.mak and config.h"  echo "Creating config.mak and config.h"
200    
# Line 244  if test "$gprof" = "yes" ; then Line 250  if test "$gprof" = "yes" ; then
250    echo "TARGET_GPROF=yes" >> config.mak    echo "TARGET_GPROF=yes" >> config.mak
251    echo "#define HAVE_GPROF 1" >> $TMPH    echo "#define HAVE_GPROF 1" >> $TMPH
252  fi  fi
253    if test "$static" = "yes" ; then
254      echo "CONFIG_STATIC=yes" >> config.mak
255    fi
256  echo -n "VERSION=" >>config.mak  echo -n "VERSION=" >>config.mak
257  head $source_path/VERSION >>config.mak  head $source_path/VERSION >>config.mak
258  echo "" >>config.mak  echo "" >>config.mak

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.13

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26