Skip to content
Snippets Groups Projects
Commit 069f9204 authored by Sebastian Meiling's avatar Sebastian Meiling
Browse files

make: export RANLIB tool with prefix

parent 21a99583
No related branches found
No related tags found
No related merge requests found
...@@ -3,8 +3,10 @@ export CXX = $(PREFIX)g++ ...@@ -3,8 +3,10 @@ export CXX = $(PREFIX)g++
export CCAS ?= $(CC) export CCAS ?= $(CC)
ifeq ($(LTO),1) ifeq ($(LTO),1)
export AR = $(PREFIX)gcc-ar export AR = $(PREFIX)gcc-ar
export RANLIB = $(PREFIX)gcc-ranlib
else else
export AR = $(PREFIX)ar export AR = $(PREFIX)ar
export RANLIB = $(PREFIX)ranlib
endif endif
export AS = $(PREFIX)as export AS = $(PREFIX)as
export LINK = $(PREFIX)gcc export LINK = $(PREFIX)gcc
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment