diff options
author | nyamatongwe <devnull@localhost> | 2002-06-13 13:17:18 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-06-13 13:17:18 +0000 |
commit | b05e8227fa3e88e762542dbfc31742143eb219df (patch) | |
tree | 0b0d3579220cf8bc8860f43273e414a4e33b9a7e | |
parent | 12bc544d8102901f511ef57e4dc1b10b4a113ef2 (diff) | |
download | scintilla-mirror-b05e8227fa3e88e762542dbfc31742143eb219df.tar.gz |
Added -Os space optimization compiler option.
-rw-r--r-- | gtk/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/makefile b/gtk/makefile index 13a4ddf9a..7312ad14d 100644 --- a/gtk/makefile +++ b/gtk/makefile @@ -26,7 +26,7 @@ CXXBASEFLAGS=-W -Wall -DGTK -DSCI_LEXER $(INCLUDEDIRS) ifdef DEBUG CXXFLAGS=-DDEBUG -g $(CXXBASEFLAGS) else -CXXFLAGS=-DNDEBUG $(CXXBASEFLAGS) +CXXFLAGS=-DNDEBUG -Os $(CXXBASEFLAGS) endif .cxx.o: |