Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3407885b authored by Koushik Dutta's avatar Koushik Dutta
Browse files

kernel.mk: workaround to fix kernel builds on darwin until the prebuilts/gcc...

kernel.mk: workaround to fix kernel builds on darwin until the prebuilts/gcc is checked in by upstream.

Change-Id: I6321fb7f6814b207c821d974766d945351b3f546
parent 5e8baf90
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -96,7 +96,11 @@ ifeq ($(TARGET_ARCH),arm)
      # Check that the executable is here.
      ccache := $(strip $(wildcard $(ccache)))
    endif
    ifeq ($(HOST_OS),darwin)
      ARM_CROSS_COMPILE:=CROSS_COMPILE="$(ccache) $(ANDROID_BUILD_TOP)/prebuilt/darwin-x86/toolchain/arm-eabi-4.4.3/bin/arm-eabi-"
    else
      ARM_CROSS_COMPILE:=CROSS_COMPILE="$(ccache) $(ARM_EABI_TOOLCHAIN)/arm-eabi-"
    endif
    ccache = 
endif