From: Rusty Russell Date: Fri, 25 Sep 2009 05:33:01 +0000 (+0930) Subject: Use -O not -O3: reduces ccan/tdb test time from 24 to 18 seconds. X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=165727526f785b05f67f3d88f9518a0a840acbbf Use -O not -O3: reduces ccan/tdb test time from 24 to 18 seconds. --- diff --git a/tools/tools.h b/tools/tools.h index 431a018a..440abc89 100644 --- a/tools/tools.h +++ b/tools/tools.h @@ -9,7 +9,7 @@ #define SPACE_CHARS " \f\n\r\t\v" /* FIXME: Remove some -I */ -#define CFLAGS "-O3 -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I.. -I../.." +#define CFLAGS "-O -Wall -Wundef -Wstrict-prototypes -Wold-style-definition -Wmissing-prototypes -Wmissing-declarations -Werror -Iccan/ -I.. -I../.." /* This actually compiles and runs the info file to get dependencies. */ char **get_deps(const void *ctx, const char *dir, const char *name,