1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 12:37:44 +00:00

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

View file

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