1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

make: export RANLIB tool with prefix

This commit is contained in:
smlng 2018-03-27 19:00:28 +02:00
parent 21a9958323
commit 069f920466

View File

@ -3,8 +3,10 @@ export CXX = $(PREFIX)g++
export CCAS ?= $(CC)
ifeq ($(LTO),1)
export AR = $(PREFIX)gcc-ar
export RANLIB = $(PREFIX)gcc-ranlib
else
export AR = $(PREFIX)ar
export RANLIB = $(PREFIX)ranlib
endif
export AS = $(PREFIX)as
export LINK = $(PREFIX)gcc