Build: Make sure that RANLIB and AR use cross-compiler provided executables

This is very much needed when compiling host tools on macOS for example
This commit is contained in:
Stefano Cristiano 2019-12-25 17:05:37 +01:00 committed by Andreas Kling
parent 9537ce918c
commit 18e3e4f236
Notes: sideshowbarker 2024-07-19 17:42:27 +09:00

View File

@ -33,6 +33,9 @@ else
CC = $(PRE_CC) $(TOOLCHAIN_PATH)/i686-pc-serenity-gcc
AS = $(TOOLCHAIN_PATH)/i686-pc-serenity-as
LINK = $(TOOLCHAIN_PATH)/i686-pc-serenity-ld
RANLIB = $(TOOLCHAIN_PATH)/i686-pc-serenity-ranlib
AR = $(TOOLCHAIN_PATH)/i686-pc-serenity-ar
DEFINES += -DDEBUG
INCLUDE_FLAGS += \