- remove the hardcoded CC,CFLAGS,CXX,CXXFLAGS. In this case you're building

for a different compiler, so why be so picky which one it is!  Some
  people don't have egcs so this was failing.
This commit is contained in:
Bryce Denney 2001-10-07 13:32:01 +00:00
parent 6a50756472
commit 48331d9dad
1 changed files with 3 additions and 12 deletions

View File

@ -7,24 +7,15 @@
set echo
# These really just make ./configure happy on your Unix machine.
# They are not the options passed to Visual C++
CC="egcs"
CFLAGS=""
CXX="$CC"
CXXFLAGS="$CFLAGS"
export CC
export CXX
export CFLAGS
export CXXFLAGS
# bbd: I removed the explicit settings for CC,CFLAGS, etc.
# Just let configure choose the compiler on the configure platform.
#./configure --with-win32-vcpp --enable-port-e9-hack
#./configure --with-win32-vcpp --enable-debugger --enable-disasm --enable-instrumentation="instrument/example0"
#./configure --with-win32-vcpp --enable-debugger --enable-disasm
#./configure --with-win32-vcpp --enable-disasm
./configure --with-win32-vcpp --enable-cdrom --enable-sb16=win --enable-cpp
./configure --with-win32-vcpp --enable-cdrom --enable-sb16=win --enable-ne2000 --enable-cpp
unset echo