diff options
author | Travis Howell | 2002-06-06 09:15:27 +0000 |
---|---|---|
committer | Travis Howell | 2002-06-06 09:15:27 +0000 |
commit | 90cb2ea7c16a9ae246714703a4d2edc23962d955 (patch) | |
tree | 2548a80bdd8373fb10586b1ab03500e6c75745d5 | |
parent | 5d53a81662ca1b93558ac26afd2f072d424713ca (diff) | |
download | scummvm-rg350-90cb2ea7c16a9ae246714703a4d2edc23962d955.tar.gz scummvm-rg350-90cb2ea7c16a9ae246714703a4d2edc23962d955.tar.bz2 scummvm-rg350-90cb2ea7c16a9ae246714703a4d2edc23962d955.zip |
Add stdc++ library for GCC 3.1 compile
svn-id: r4410
-rw-r--r-- | Makefile.mingw | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.mingw b/Makefile.mingw index b596074fef..ab22ff0283 100644 --- a/Makefile.mingw +++ b/Makefile.mingw @@ -14,7 +14,8 @@ DEFINES = -DCOMPRESSED_SOUND_FILE LDFLAGS :=-mwindows -mconsole INCLUDES:= $(SDL_CFLAGS) -I./ -I./sound CPPFLAGS= $(DEFINES) $(INCLUDES) -LIBS = -lmingw32 -lwinmm -lmad $(SDL_LIBS) +#If compiling with GCC 2.95.x remove the -lstdc++ +LIBS = -lmingw32 -lwinmm -lmad -lstdc++ $(SDL_LIBS) EXEEXT :=.exe OBJS = sdl.o scummvmico.o |