1
0
mirror of git://projects.qi-hardware.com/ben-blinkenlights.git synced 2024-06-28 22:37:16 +03:00

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
This commit is contained in:
Werner Almesberger 2013-01-24 15:31:59 -03:00
parent 2c5b3625a7
commit e1eea4fa86

View File

@ -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