From 6a4e0a4e1f84d124e01a81b5a8563df080c7c999 Mon Sep 17 00:00:00 2001 From: Mark Hatle Date: Mon, 20 Jun 2011 13:08:18 -0500 Subject: tinylogin: Avoid stripped binaries Signed-off-by: Mark Hatle --- .../tinylogin/tinylogin-1.4/avoid_static.patch | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 meta/recipes-core/tinylogin/tinylogin-1.4/avoid_static.patch (limited to 'meta/recipes-core/tinylogin/tinylogin-1.4') diff --git a/meta/recipes-core/tinylogin/tinylogin-1.4/avoid_static.patch b/meta/recipes-core/tinylogin/tinylogin-1.4/avoid_static.patch new file mode 100644 index 0000000000..8a06af0ddf --- /dev/null +++ b/meta/recipes-core/tinylogin/tinylogin-1.4/avoid_static.patch @@ -0,0 +1,33 @@ +tinylogin: Do not link statically when building debug + +For some reason if DODEBUG was enabled (to prevent stripping) the binary was +also statically linked. This patch prevents that behavior. + +Upstream-Status: Inappropriate [no upstream] + +Signed-off-by: Mark Hatle + +diff -ur tinylogin-1.4.orig/Makefile tinylogin-1.4/Makefile +--- tinylogin-1.4.orig/Makefile 2011-06-18 11:00:23.073927349 -0500 ++++ tinylogin-1.4/Makefile 2011-06-18 11:03:26.394849372 -0500 +@@ -123,20 +123,6 @@ + LDFLAGS += -s -Wl,-warn-common + STRIP = $(STRIPTOOL) --remove-section=.note --remove-section=.comment $(PROG) + endif +-ifeq ($(strip $(DODEBUG)),true) +- LDFLAGS += --static +- # +- #use '-ffunction-sections -fdata-sections' and '--gc-sections' (if they +- # work) to try and strip out any unused junk. Doesn't do much for me, +- # but you may want to give it a shot... +- # +- #ifeq ($(shell $(CC) -ffunction-sections -fdata-sections -S \ +- # -o /dev/null -xc /dev/null 2>/dev/null && $(LD) \ +- # --gc-sections -v >/dev/null && echo 1),1) +- # CFLAGS += -ffunction-sections -fdata-sections +- # LDFLAGS += --gc-sections +- #endif +-endif + ifeq ($(strip $(DOSTATIC)),true) + LDFLAGS += --static + # -- cgit 1.2.3-korg