- use gcc instead of egcs, since gcc is much more standard. Using a

hardcoded gcc was failing on debian.
This commit is contained in:
Bryce Denney 2001-10-07 21:23:00 +00:00
parent d822724eae
commit b44617ddd5
3 changed files with 5 additions and 5 deletions

View File

@ -1,10 +1,10 @@
#!/bin/sh #!/bin/sh
# #
# These are the steps I typically use to configure and compile Bochs # These are the steps I typically use to configure and compile Bochs
# on a Linux x86 system with egcs # on a Linux x86 system with gcc
# #
CC="egcs" CC="gcc"
CXX="c++" CXX="c++"
CFLAGS="-Wall -O2 -fomit-frame-pointer -pipe" CFLAGS="-Wall -O2 -fomit-frame-pointer -pipe"
CXXFLAGS="$CFLAGS" CXXFLAGS="$CFLAGS"

View File

@ -8,7 +8,7 @@ set echo
# These really just make ./configure happy on your Unix machine. # These really just make ./configure happy on your Unix machine.
# They are not the options used on your Mac. # They are not the options used on your Mac.
CC="egcs" CC="gcc"
CFLAGS="" CFLAGS=""
CXX="$CC" CXX="$CC"
CXXFLAGS="$CFLAGS" CXXFLAGS="$CFLAGS"

View File

@ -1,10 +1,10 @@
#!/bin/sh #!/bin/sh
# #
# These are the steps I typically use to configure and compile Bochs # These are the steps I typically use to configure and compile Bochs
# on a Linux x86 system with egcs # on a Linux x86 system with gcc
# #
CC="egcs" CC="gcc"
CXX="c++" CXX="c++"
CFLAGS="-Wall -O2 -m486 -fomit-frame-pointer -pipe" CFLAGS="-Wall -O2 -m486 -fomit-frame-pointer -pipe"
CXXFLAGS="$CFLAGS" CXXFLAGS="$CFLAGS"