From: Andrew C. <an...@op...> - 2011-02-19 08:28:52
|
On Fri, 2011-02-18 at 04:35 +0200, Serkan Kaba wrote: > Need to set that CFLAGS, I would avoid any forced optimizations in our > build file other than using CFLAGS provided. CFLAGS, if set in a Makefile and also in users environment is overridden by environment, right? Well, it is if you do this: ifndef CFLAGS CFLAGS=-O2 endif So we could have sensible intelligent defaults...? AfC Sydney |