diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-10-09 19:30:15 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-10-09 19:30:15 +0200 |
commit | 8625bb7339d437ac3b827fa5c8dcc7b69bcf1e1b (patch) | |
tree | f51fd9fad8ebeb2b028f6a97021bc4455c95c6cd | |
parent | 372502e026e7c3788142ecf581efcc4645a79576 (diff) |
drop -O0 for debug builds
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8982a0d..d20b490 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -32,7 +32,7 @@ ELSE() ENDIF() IF(DEBUG) - ADD_DEFINITIONS(-DDEBUG -O0 --std=gnu99 -g3) + ADD_DEFINITIONS(-DDEBUG --std=gnu99 -g3) ENDIF() |