diff options
| author | nyamatongwe <devnull@localhost> | 2005-07-08 04:16:16 +0000 |
|---|---|---|
| committer | nyamatongwe <devnull@localhost> | 2005-07-08 04:16:16 +0000 |
| commit | ad54fd3bb88a7a5c561c50517a6a46114b2e91c8 (patch) | |
| tree | f584ce6f01e7282a30170a092533a402041b9c0e | |
| parent | 9568da999f44c1005cbd6298399a5d4bfdaefe65 (diff) | |
| download | scintilla-mirror-ad54fd3bb88a7a5c561c50517a6a46114b2e91c8.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) |
