From 00ef01ada880bfdf374401370d2b5ffc9b4a1b45 Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 24 Jan 2013 15:34:04 -0300 Subject: [PATCH] ubb-patgen/Makefile (CFLAGS): -O9 is currently unsafe; use -O1 Higher optimizations can cause the generation of code that unexpectedly does the equivalent of PDFUNS = PDFUNS; http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56098 --- ubb-patgen/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubb-patgen/Makefile b/ubb-patgen/Makefile index 7450462..a91f142 100644 --- a/ubb-patgen/Makefile +++ b/ubb-patgen/Makefile @@ -11,7 +11,7 @@ # CC = mipsel-openwrt-linux-gcc -CFLAGS = -g -Wall -O9 -I../libubb/include +CFLAGS = -g -Wall -O1 -I../libubb/include LDFLAGS = LDLIBS = -L../libubb -lubb -lm -lrt