Skip to content

Commit ae0cb25

Browse files
committed
Improved install-development script
1 parent 867a1b7 commit ae0cb25

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

install-development

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ if [ x"$CC" == x ]; then
5656
exit 1
5757
fi
5858

59+
export CFLAGS="-g3 -O0 -Wall -fvisibility=hidden -march=native"
60+
5961
if [ x"$CC" == xclang ]; then
60-
export CFLAGS="-g3 -O0 -fcolor-diagnostics -Wall -march=native -std=gnu90"
61-
else
62-
export CFLAGS="-g3 -O0 -fno-delete-null-pointer-checks -Wall -fvisibility=hidden -march=native -std=gnu90"
62+
export CFLAGS="${CFLAGS} -fcolor-diagnostics"
6363
fi
6464

6565
# Translate long options to short

0 commit comments

Comments
 (0)