Added new configure shortcut script for compiling Bochs WIN64 on MSVC.

This commit is contained in:
Volker Ruppert 2020-01-15 21:42:38 +00:00
parent 48e07bcf7b
commit 38581dc7ed

35
bochs/.conf.win64-vcpp Executable file
View File

@ -0,0 +1,35 @@
#!/bin/sh
set echo
./configure --target=x86_64-windows \
--enable-sb16 \
--enable-ne2000 \
--enable-all-optimizations \
--enable-cpu-level=6 \
--enable-x86-64 \
--enable-vmx=2 \
--enable-pci \
--enable-clgd54xx \
--enable-voodoo \
--enable-usb \
--enable-usb-ohci \
--enable-usb-ehci \
--enable-usb-xhci \
--enable-busmouse \
--enable-es1370 \
--enable-e1000 \
--enable-show-ips \
--disable-readline \
--without-x \
--with-win32 --with-rfb --with-nogui
unset echo
# Fix up all makefiles so that nmake can handle them.
for i in `find . -name Makefile`; do
echo Removing curly brackets in $i for NMAKE.
mv $i $i.tmp
sed -e 's/{/(/g' -e 's/}/)/g' < $i.tmp > $i
rm -f $i.tmp
done