mirror of
https://github.com/netdata/netdata.git
synced 2025-03-14 21:22:57 +00:00
9 lines
238 B
Bash
Executable file
9 lines
238 B
Bash
Executable file
#!/bin/sh
|
|
|
|
if [ -n "${CFLAGS}" ]; then
|
|
echo "${CFLAGS}"
|
|
elif [ -n "${DEBUG_BUILD}" ]; then
|
|
echo "-ffunction-sections -fdata-sections -Og -ggdb -pipe"
|
|
else
|
|
echo "-ffunction-sections -fdata-sections -O2 -funroll-loops -pipe"
|
|
fi
|