diff options
author | Rich Felker <dalias@aerifal.cx> | 2012-04-24 16:49:11 -0400 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2012-04-24 16:49:11 -0400 |
commit | e4d35ea9cfb612bcfbaf141559d62e1dca9f13c4 (patch) | |
tree | a37fd9b6cf6313b041110ac7f668876b1a109b50 | |
parent | 4750cf4202c29a895639b89099a7bdbe9ae422b6 (diff) | |
download | musl-e4d35ea9cfb612bcfbaf141559d62e1dca9f13c4.tar.gz musl-e4d35ea9cfb612bcfbaf141559d62e1dca9f13c4.tar.xz musl-e4d35ea9cfb612bcfbaf141559d62e1dca9f13c4.zip |
add another example option to dist/config.mak
-rw-r--r-- | dist/config.mak | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/dist/config.mak b/dist/config.mak index 1b8d23dc..1fc43695 100644 --- a/dist/config.mak +++ b/dist/config.mak @@ -26,6 +26,9 @@ syslibdir = /lib # Uncomment for smaller code size. #CFLAGS += -fomit-frame-pointer -mno-accumulate-outgoing-args +# Uncomment to omit massive GCC4 DWARF2 bloat (only useful for debugging) +#CFLAGS += -fno-asynchronous-unwind-tables + # Uncomment for warnings (as errors). Might need tuning to your gcc version. #CFLAGS += -Werror -Wall -Wpointer-arith -Wcast-align -Wno-parentheses -Wno-char-subscripts -Wno-uninitialized -Wno-sequence-point -Wno-missing-braces -Wno-unused-value -Wno-overflow -Wno-int-to-pointer-cast |