summaryrefslogtreecommitdiffstats
path: root/config/apple
diff options
context:
space:
mode:
Diffstat (limited to 'config/apple')
-rw-r--r--config/apple14
1 files changed, 14 insertions, 0 deletions
diff --git a/config/apple b/config/apple
index ac93ea5..be0e9f9 100644
--- a/config/apple
+++ b/config/apple
@@ -31,6 +31,20 @@ if test "X-" = "X-$CC"; then
*)
CC=clang
CC_BASENAME=clang
+
+ # Production
+ PROD_CFLAGS="-O3"
+ PROD_CPPFLAGS="-O3"
+
+ # Debug
+ DEBUG_CFLAGS="-g -O0"
+ DEBUG_CPPFLAGS="-g -O0"
+
+ # Profile
+ # Use this for profiling with gprof
+ # Just "-g" for now. More later.
+ PROFILE_CFLAGS="-g"
+ PROFILE_CPPFLAGS="-g"
;;
esac
fi