From cf77766e64dfba8c72906edc3fdedaf71684ebc1 Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Mon, 14 Sep 2015 14:51:07 +0000 Subject: tools/mtd-utils: prefer static linking - Add patch for optional static linking preference - Prefer static linking on Linux systems - Enable verbose compiler messages when building with V=c Signed-off-by: Jo-Philipp Wich SVN-Revision: 46908 --- tools/mtd-utils/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'tools/mtd-utils/Makefile') diff --git a/tools/mtd-utils/Makefile b/tools/mtd-utils/Makefile index f831e3c348..e06d1379a1 100644 --- a/tools/mtd-utils/Makefile +++ b/tools/mtd-utils/Makefile @@ -25,6 +25,9 @@ HOST_CFLAGS += -I$(STAGING_DIR_HOST)/include/e2fsprogs CFLAGS := $(HOST_CFLAGS) -I$(HOST_BUILD_DIR)/include -L$(HOST_BUILD_DIR) -L$(STAGING_DIR_HOST)/lib -DNO_NATIVE_SUPPORT ifneq ($(HOST_OS),Linux) CFLAGS += -Dloff_t=off_t -D__BYTE_ORDER=BYTE_ORDER -include getline.h -include endian.h -I$(CURDIR)/include -include fls.h +MTD_STATIC := 0 +else +MTD_STATIC := 1 endif MTD_MAKEOPTS = \ @@ -32,7 +35,9 @@ MTD_MAKEOPTS = \ LDFLAGS="$(HOST_LDFLAGS)" \ WITHOUT_LZO=1 WITHOUT_XATTR=1 \ SUBDIRS="" \ - BUILDDIR="$(HOST_BUILD_DIR)" + BUILDDIR="$(HOST_BUILD_DIR)" \ + STATIC=$(MTD_STATIC) \ + V=$(if $(findstring c,$(OPENWRT_VERBOSE)),1) define Host/Compile $(MAKE) -C $(HOST_BUILD_DIR) \ -- cgit v1.2.3