From e45d63a7ac71f6d4e28d5d8554d83aa71ea463a5 Mon Sep 17 00:00:00 2001 From: Dennis Schafroth Date: Fri, 20 Apr 2012 10:48:48 +0200 Subject: [PATCH] Force -O0 on -d, since llvm-gcc has a default of -O2 --- buildconf.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildconf.sh b/buildconf.sh index ac1f580..fdadda8 100755 --- a/buildconf.sh +++ b/buildconf.sh @@ -61,7 +61,7 @@ sh_flags="" conf_flags="" case $1 in -d) - sh_cflags="-g -Wall -Wdeclaration-after-statement -Wstrict-prototypes" + sh_cflags="-O0 -g -Wall -Wdeclaration-after-statement -Wstrict-prototypes" sh_cxxflags="-g -Wall" enable_configure=true enable_help=false -- 1.7.10.4