Commit a98fd896cdcab506e734de7555304da16e775277
1 parent
d6cdca95
target cpu definition
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@118 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
3 additions
and
1 deletions
configure
| ... | ... | @@ -26,6 +26,7 @@ host_cc="gcc" |
| 26 | 26 | ar="ar" |
| 27 | 27 | make="make" |
| 28 | 28 | strip="strip" |
| 29 | +target_cpu="x86" | |
| 29 | 30 | cpu=`uname -m` |
| 30 | 31 | case "$cpu" in |
| 31 | 32 | i386|i486|i586|i686|i86pc|BePC) |
| ... | ... | @@ -178,8 +179,9 @@ echo "Install prefix $prefix" |
| 178 | 179 | echo "Source path $source_path" |
| 179 | 180 | echo "C compiler $cc" |
| 180 | 181 | echo "make $make" |
| 181 | -echo "CPU $cpu" | |
| 182 | +echo "host CPU $cpu" | |
| 182 | 183 | echo "Big Endian $bigendian" |
| 184 | +echo "target CPU $target_cpu" | |
| 183 | 185 | echo "gprof enabled $gprof" |
| 184 | 186 | |
| 185 | 187 | echo "Creating config.mak and config.h" | ... | ... |