From e1eea4fa8638c3b2fce857455c081d61f143bc2b Mon Sep 17 00:00:00 2001 From: Werner Almesberger Date: Thu, 24 Jan 2013 15:31:59 -0300 Subject: [PATCH] ubb-la/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-la/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubb-la/Makefile b/ubb-la/Makefile index 5b577fe..139f8e7 100644 --- a/ubb-la/Makefile +++ b/ubb-la/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