From fc4cd7ead0f5a045e9f03043fa2dec73548cd6e3 Mon Sep 17 00:00:00 2001 From: Jarkko Sakkinen Date: Tue, 25 Oct 2016 19:32:05 +0300 Subject: [PATCH] Do not define CC and CXX in sdk/cpprt/Makefile This will prevent the cross compilation environment from defining its own CC and CXX. Signed-off-by: Jarkko Sakkinen --- sdk/cpprt/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/sdk/cpprt/Makefile b/sdk/cpprt/Makefile index beca61bcb2..0d8f4a5175 100644 --- a/sdk/cpprt/Makefile +++ b/sdk/cpprt/Makefile @@ -79,9 +79,6 @@ $(CPPRT): $(OBJS) prepare-libunwind libunwind $(CP) linux/libunwind/src/.libs/libunwind.a $(CPPRT) $(AR) rs $@ $(OBJS) -$(CPPRT): CC = gcc -$(CPPRT): CXX = g++ - .PHONY: libunwind libunwind: cd linux/libunwind/ && ( test -f Makefile || ./autogen-linux.sh ) && $(MAKE) -j5