DEBSOURCES
Skip Quicknav
sources / netdata / 1.37.1-2 / packaging / docker / gen-cflags.sh
123456789
#!/bin/sh if [ -n "${CFLAGS}" ]; then echo "${CFLAGS}" elif [ -n "${DEBUG_BUILD}" ]; then echo "-Og -ggdb -pipe" else echo "-O2 -pipe" fi