gen-cflags.sh 238 B

123456789
  1. #!/bin/sh
  2. if [ -n "${CFLAGS}" ]; then
  3. echo "${CFLAGS}"
  4. elif [ -n "${DEBUG_BUILD}" ]; then
  5. echo "-ffunction-sections -fdata-sections -Og -ggdb -pipe"
  6. else
  7. echo "-ffunction-sections -fdata-sections -O2 -funroll-loops -pipe"
  8. fi