mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
6d90267d40
gcc-ar is a wrapper supplied by gcc for properly handling thin LTO objects.
15 lines
336 B
Gnuplot
15 lines
336 B
Gnuplot
export GDBPREFIX ?= $(PREFIX)
|
|
export CC = $(PREFIX)gcc
|
|
export CXX = $(PREFIX)g++
|
|
ifeq ($(LTO),1)
|
|
export AR = $(PREFIX)gcc-ar
|
|
else
|
|
export AR = $(PREFIX)ar
|
|
endif
|
|
export AS = $(PREFIX)as
|
|
export LINK = $(PREFIX)gcc
|
|
export SIZE = $(PREFIX)size
|
|
export OBJCOPY = $(PREFIX)objcopy
|
|
export OBJDUMP = $(PREFIX)objdump
|
|
export DBG = $(GDBPREFIX)gdb
|