Skip to content
Snippets Groups Projects
Commit 11396c02 authored by Ralph Giles's avatar Ralph Giles
Browse files

Turn on -Wall.

git-svn-id: https://svn.xiph.org/trunk/Tremor@10703 0101bb08-14d6-0310-b084-bc0e0c8e3800
parent f66d4e20
No related branches found
No related tags found
No related merge requests found
......@@ -54,14 +54,15 @@ else
case $host in
arm-*-*)
DEBUG="-g -W -D__NO_MATH_INLINES -fsigned-char -D_ARM_ASSEM_"
DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char
-D_ARM_ASSEM_"
CFLAGS="-O2 -D_ARM_ASSEM_ -fsigned-char"
PROFILE="-W -pg -g -O2 -D_ARM_ASSEM_ -fsigned-char -fno-inline-functions";;
*)
DEBUG="-g -W -D__NO_MATH_INLINES -fsigned-char"
CFLAGS="-O2 -fsigned-char"
PROFILE="-W -pg -g -O2 -fsigned-char -fno-inline-functions";;
DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char"
CFLAGS="-O2 -Wall -fsigned-char"
PROFILE="-Wall -pg -g -O2 -fsigned-char -fno-inline-functions";;
esac
fi
CFLAGS="$CFLAGS $cflags_save -D_REENTRANT"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment