File: .conf.win64-vcpp

package info (click to toggle)
bochs 3.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 25,244 kB
  • sloc: cpp: 270,331; ansic: 25,334; sh: 8,371; makefile: 5,512; yacc: 1,485; asm: 395; perl: 359; lex: 318; csh: 3
file content (44 lines) | stat: -rwxr-xr-x 1,200 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/bin/sh

set echo

./configure --target=x86_64-windows \
            --enable-sb16 \
            --enable-ne2000 \
            --enable-all-optimizations \
            --enable-cpu-level=6 \
            --enable-3dnow \
            --enable-x86-64 \
            --enable-vmx=2 \
            --enable-svm \
            --enable-avx \
            --enable-evex \
            --enable-cet \
            --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 \
            --enable-debugger \
            --enable-debugger-gui \
            --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
  if test "$i" != "./cpu/softfloat3e/Makefile"; then
    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
  fi
done