From: Marek Vasut Date: Fri, 18 May 2018 07:56:53 +0000 (+0200) Subject: pylibfdt: Add missing CC and LD to Makefile X-Git-Tag: v2018.07-rc1~96 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f919fbd350bf6f782ab5ceba5b28fc5ad6d9c595;p=platform%2Fkernel%2Fu-boot.git pylibfdt: Add missing CC and LD to Makefile Add missing CC and LDSHARED variables to the Makefile to pass the correct C compiler and linker path to the build of _libfdt.so . Signed-off-by: Marek Vasut Cc: Tom Rini Cc: Masahiro Yamada Cc: Simon Glass Reviewed-by: Masahiro Yamada --- diff --git a/scripts/dtc/pylibfdt/Makefile b/scripts/dtc/pylibfdt/Makefile index 01d5e0f..c769d7d 100644 --- a/scripts/dtc/pylibfdt/Makefile +++ b/scripts/dtc/pylibfdt/Makefile @@ -14,7 +14,8 @@ PYLIBFDT_srcs = $(addprefix $(LIBFDT_srcdir)/,$(LIBFDT_SRCS)) \ $(obj)/libfdt.i quiet_cmd_pymod = PYMOD $@ - cmd_pymod = unset CC; unset CROSS_COMPILE; unset CFLAGS;\ + cmd_pymod = unset CROSS_COMPILE; unset CFLAGS; \ + CC="$(HOSTCC)" LDSHARED="$(HOSTCC) -shared " \ LDFLAGS="$(HOSTLDFLAGS)" \ VERSION="u-boot-$(UBOOTVERSION)" \ CPPFLAGS="$(HOSTCFLAGS) -I$(LIBFDT_srcdir)" OBJDIR=$(obj) \