diff options
author | nyamatongwe <unknown> | 2005-07-08 04:16:16 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2005-07-08 04:16:16 +0000 |
commit | 0914c836045705a3e71530656f0075d27235a647 (patch) | |
tree | f584ce6f01e7282a30170a092533a402041b9c0e | |
parent | c9d0d9ac26ae4b77a6b348cef32f1f6f1993aeb0 (diff) | |
download | scintilla-mirror-0914c836045705a3e71530656f0075d27235a647.tar.gz |
MINGW GCC 3.4 warns about using char as subscript so added command line
argument to disable the warning as is already done for GTK+ compilations.
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 0368028e7..5acff8b60 100644 --- a/win32/makefile +++ b/win32/makefile @@ -29,7 +29,7 @@ LDFLAGS=-mwindows -lstdc++ -limm32 -lole32 -luuid -mno-cygwin # Add -MMD to get dependencies #CXXFLAGS = -g -pg -pedantic -Os -fno-exceptions -fvtable-thunks -fno-rtti INCLUDEDIRS=-I ../include -I ../src -CXXBASEFLAGS=-Wall -Wno-missing-braces -pedantic $(INCLUDEDIRS) -Os -fno-exceptions $(THUNKFLAGS) -fno-rtti -mno-cygwin +CXXBASEFLAGS=-Wall -Wno-missing-braces -Wno-char-subscripts -pedantic $(INCLUDEDIRS) -Os -fno-exceptions $(THUNKFLAGS) -fno-rtti -mno-cygwin ifdef DEBUG CXXFLAGS=-DDEBUG $(CXXBASEFLAGS) |