summaryrefslogtreecommitdiffstats
path: root/packaging/docker/gen-cflags.sh
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/docker/gen-cflags.sh')
-rwxr-xr-xpackaging/docker/gen-cflags.sh9
1 files changed, 9 insertions, 0 deletions
diff --git a/packaging/docker/gen-cflags.sh b/packaging/docker/gen-cflags.sh
new file mode 100755
index 00000000..3a80b735
--- /dev/null
+++ b/packaging/docker/gen-cflags.sh
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+if [ -n "${CFLAGS}" ]; then
+ echo "${CFLAGS}"
+elif [ -n "${DEBUG_BUILD}" ]; then
+ echo "-Og -ggdb -pipe"
+else
+ echo "-O2 -pipe"
+fi