1
0
mirror of git://projects.qi-hardware.com/xburst-tools.git synced 2024-11-01 08:22:47 +02:00

Removed -Werror from GCC flags, as it causes problems on a lot of GCC versions.

This commit is contained in:
Peter Zotov 2010-12-21 21:47:07 +03:00
parent cfab51e678
commit f5075c8f8d

View File

@ -9,7 +9,7 @@ endif
CC = gcc
TARGET = ../jzboot
SOURCES = debug.c devmgr.c ingenic.c main.c shell_lex.c usbdev.c shell.c shell_builtins.c config.c spl_cmdset.c usbboot_cmdset.c
CFLAGS = --std=gnu99 -Wall -Werror -I../include -O2 $(shell pkg-config libusb-1.0 --cflags)
CFLAGS = --std=gnu99 -Wall -I../include -O2 $(shell pkg-config libusb-1.0 --cflags)
LIBS += $(shell pkg-config libusb-1.0 --libs)
OBJECTS = ${SOURCES:.c=.o}