Compile imxtools as gnu99 standard.
With current MinGW using c99 as standard the compiler causes problems with some types. Use gnu99 standard instead which doesn't do this. Change-Id: I731f58025645ae88ac226593a2b2a62140285ee8
This commit is contained in:
parent
7de2a364d0
commit
79a56fabb9
1 changed files with 2 additions and 1 deletions
|
@ -8,7 +8,8 @@
|
|||
# We use the SB code available in the Rockbox utils/sbtools directory
|
||||
IMXTOOLS_DIR=../../utils/imxtools/sbtools/
|
||||
CFLAGS += -I$(IMXTOOLS_DIR) -Wall
|
||||
CFLAGS += -std=c99 -g -O3
|
||||
# std=gnu99 is required by MinGW on Windows (c99 is sufficient for Linux / MXE)
|
||||
CFLAGS += -std=gnu99 -g -O3
|
||||
|
||||
OUTPUT = mkimxboot
|
||||
|
||||
|
|
Loading…
Reference in a new issue