diff options
author | Andreas Faerber <andreas.faerber@web.de> | 2009-11-27 22:18:52 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2009-12-03 15:25:57 -0600 |
commit | ea5ad306bae127a1cae9c797bef66284fe571abf (patch) | |
tree | adf050a3d46a41413be36303ba79cf290bc13597 /configure | |
parent | Rename DriveInfo.onerror to on_write_error (diff) | |
download | qemu-kvm-ea5ad306bae127a1cae9c797bef66284fe571abf.tar.gz qemu-kvm-ea5ad306bae127a1cae9c797bef66284fe571abf.tar.bz2 qemu-kvm-ea5ad306bae127a1cae9c797bef66284fe571abf.zip |
Suppress optionrom build on Solaris x86
To avoid the build failing with:
gcc -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno-
builtin -I/export/home/andreas/QEMU/qemu -Wall -Wstrict-prototypes -
Werror -fomit-frame-pointer -fno-builtin -I/export/home/andreas/QEMU/
qemu -c -o multiboot.o multiboot.S
/var/tmp//ccd3aWyk.s: Assembler messages:
/var/tmp//ccd3aWyk.s:15: Error: value of 512 too large for field of 1
bytes at 0000000000000002
gmake[1]: *** [multiboot.o] Error 1
disable recursion into pc-bios/optionrom, as done for Darwin already.
Signed-off-by: Andreas Faerber <andreas.faerber@web.de>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2133,7 +2133,7 @@ echo "TOOLS=$tools" >> $config_host_mak # Mac OS X ships with a broken assembler roms= if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \ - "$targetos" != "Darwin" -a \ + "$targetos" != "Darwin" -a "$targetos" != "SunOS" -a \ `expr "$target_list" : ".*softmmu.*"` != 0 ; then roms="optionrom" fi |