[misc] optimize for size

* Tests show that it should have much impact on UFD creation speed and helps shave ~15KB with gcc 4.8.x
* Also adjust the version nano so that it matches the number of commits seen by github
* This means there is NO build 399
This commit is contained in:
Pete Batard 2014-02-01 00:03:57 +00:00
parent f424229e0f
commit 8db3a26bf7
5 changed files with 13 additions and 13 deletions

View file

@ -29,9 +29,9 @@ AC_ARG_ENABLE([debug],
[debug_enabled=$enableval],
[debug_enabled='yes'])
if test "x$debug_enabled" != "xno" ; then
CFLAGS="-g -O2"
CFLAGS="-g -O0"
else
CFLAGS="-O2"
CFLAGS="-Os"
LDFLAGS="-s"
fi