From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 7334 invoked by alias); 7 Dec 2016 12:47:04 -0000 Mailing-List: contact cygwin-apps-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Post: List-Help: , Sender: cygwin-apps-cvs-owner@sourceware.org Received: (qmail 6808 invoked by uid 9795); 7 Dec 2016 12:47:03 -0000 Date: Wed, 07 Dec 2016 12:47:00 -0000 Message-ID: <20161207124703.6764.qmail@sourceware.org> From: jturney@sourceware.org To: cygwin-apps-cvs@sourceware.org Subject: [setup - the official Cygwin setup program used to install Cygwin and keep it up to date] branch master, updated. release_2.876-7-g77ddbf4 X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: c938e8a6ac5318c6c73b7cd02cc59a58c2db5f4e X-Git-Newrev: 77ddbf45b5c16faeb0c7247ded8c7a5f6fb59b19 X-SW-Source: 2016-q4/txt/msg00009.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=cygwin-apps/setup.git;h=77ddbf45b5c16faeb0c7247ded8c7a5f6fb59b19 commit 77ddbf45b5c16faeb0c7247ded8c7a5f6fb59b19 Author: Jon Turney Date: Tue Nov 22 16:05:58 2016 +0000 Strip symbols to setup.dbg As noted in https://cygwin.com/ml/cygwin/2016-11/msg00254.html debugging the distributed setup executable is a lost cause at the moment. Preserve symbols so it's not quite as hopeless. Note: to debug the distributed setup executable with gdb, it will be necessary to decompress the setup executable with 'upx -d', and, if the .dbg file has been renamed to match the renamed setup executable, explicitly load it into gdb with the 'symbol-file' command. Signed-off-by: Jon Turney Diff: --- Makefile.am | 5 ++++- configure.ac | 14 +------------- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/Makefile.am b/Makefile.am index 3498c9d..12ad5ca 100644 --- a/Makefile.am +++ b/Makefile.am @@ -297,7 +297,10 @@ setup-src: .PHONY: strip upx strip: all - $(STRIP) -s setup$(EXEEXT) + $(OBJCOPY) --add-gnu-debuglink=/dev/null --only-keep-debug setup$(EXEEXT) setup.dbg + $(OBJCOPY) --strip-all setup$(EXEEXT) + $(OBJCOPY) --add-gnu-debuglink=setup.dbg setup$(EXEEXT) setup$(EXEEXT) + upx: strip @if [ -e `which upx` ]; then\ upx --best --lzma setup$(EXEEXT) ;\ diff --git a/configure.ac b/configure.ac index 32a3b01..42ad3e2 100644 --- a/configure.ac +++ b/configure.ac @@ -48,20 +48,8 @@ AC_CANONICAL_BUILD AC_CANONICAL_HOST AC_PROG_LIBTOOL -dnl AC_CHECK_TOOL(AR, ar, ar) -dnl AC_SUBST(AR) -dnl AC_CHECK_TOOL(AS, as, as) -dnl AC_SUBST(AS) -dnl AC_CHECK_TOOL(RANLIB, ranlib, ranlib) -dnl AC_SUBST(RANLIB) -dnl AC_CHECK_TOOL(LD, ld, ld) -dnl AC_SUBST(LD) -dnl AC_CHECK_TOOL(DLLTOOL, dlltool, dlltool) -dnl AC_SUBST(DLLTOOL) AC_CHECK_TOOL(WINDRES, windres, windres) -AC_SUBST(WINDRES) -dnl AC_CHECK_TOOL(OBJCOPY, objcopy, objcopy) -dnl AC_SUBST(OBJCOPY) +AC_CHECK_TOOL(OBJCOPY, objcopy, objcopy) AC_CHECK_HEADERS(alloca.h \ errno.h \