forked from len0rd/rockbox
imxtools/hwemul: allow for toolchain prefix override
Change-Id: I4f790441edac01ab2e8cb286c766ea0b272b4780
This commit is contained in:
parent
071c95be70
commit
75df5c2684
1 changed files with 5 additions and 4 deletions
|
|
@ -1,7 +1,8 @@
|
|||
CC=arm-elf-eabi-gcc
|
||||
LD=arm-elf-eabi-gcc
|
||||
AS=arm-elf-eabi-gcc
|
||||
OC=arm-elf-eabi-objcopy
|
||||
PREFIX?=arm-elf-eabi-
|
||||
CC=$(PREFIX)gcc
|
||||
LD=$(PREFIX)gcc
|
||||
AS=$(PREFIX)gcc
|
||||
OC=$(PREFIX)objcopy
|
||||
SBTOOLS=../../sbtools/
|
||||
CFLAGS=-W -Wall -Wundef -O -nostdlib -ffreestanding -Wstrict-prototypes -pipe -std=gnu99 -mcpu=arm926ej-s -fomit-frame-pointer -Wno-pointer-sign -Wno-override-init -ffunction-sections
|
||||
CFLAGS_3700=$(CFLAGS) -DHAVE_STMP3700
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue