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. --- 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 \ -- 2.8.3