File: .conf.sparc

package info (click to toggle)
bochs 1.4pre2-1
  • links: PTS
  • area: main
  • in suites: woody
  • size: 7,656 kB
  • ctags: 10,322
  • sloc: cpp: 66,880; ansic: 19,674; sh: 2,951; makefile: 2,183; asm: 2,110; yacc: 723; lex: 171; csh: 147; perl: 35
file content (40 lines) | stat: -rwxr-xr-x 1,109 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
#!/bin/sh

#
# These are the steps I typically use to configure and compile Bochs.
#

# superSPARC w/ Solaris 2.x
set echo
CC="gcc"
CXX="$CC"
CFLAGS="-Wall -O2 -mv8 -msupersparc -mno-epilogue"
#CFLAGS="-Wall -O2 -mv8 -msupersparc"
#CFLAGS="-Wall -O2 -g"
CXXFLAGS="$CFLAGS"


export CC
export CXX
export CFLAGS
export CXXFLAGS

./configure
#./configure --enable-fpu
#./configure
#./configure --enable-instrumentation
#./configure --with-nogui
#./configure --enable-disasm
#./configure --enable-debugger
#./configure --enable-debugger --enable-disasm
#./configure --enable-debugger --enable-disasm --enable-loader
#./configure --enable-debugger --enable-disasm --enable-instrumentation
#./configure --enable-debugger --enable-disasm --enable-instrumentation="instrument/stubs"

#./configure --enable-debugger --enable-disasm --enable-instrumentation="instrument/example0"
#./configure --enable-instrumentation="instrument/example0"

#./configure --enable-debugger --enable-disasm --enable-num-sim=2 --enable-simid=0
#./configure --enable-debugger --enable-disasm --enable-num-sim=2 --enable-simid=1

unset echo