stripping is now done during installation, not linking
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@1894 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
parent
bdcbd8a791
commit
5f0f31fefd
13
configure.in
13
configure.in
@ -369,6 +369,11 @@ dnl ===========
|
||||
AC_PROG_AWK
|
||||
dnl defines AWK with the appropriate command
|
||||
|
||||
dnl strip command
|
||||
dnl =============
|
||||
AC_CHECK_PROG(STRIP, strip, strip, true)
|
||||
dnl defines STRIP as strip or nothing if not found
|
||||
|
||||
dnl ###############
|
||||
dnl # make checks #
|
||||
dnl ###############
|
||||
@ -1144,15 +1149,13 @@ WXDEBUG=
|
||||
if test "$wxUSE_DEBUG_GDB" = 1 ; then
|
||||
wxUSE_DEBUG_INFO=1
|
||||
WXDEBUG="-ggdb"
|
||||
wxUSE_OPTIMISE=0
|
||||
else
|
||||
fi
|
||||
|
||||
if test "$wxUSE_DEBUG_INFO" = 1 ; then
|
||||
WXDEBUG="-g"
|
||||
wxUSE_OPTIMISE=0
|
||||
else
|
||||
EXTRA_LINK="-s $EXTRA_LINK"
|
||||
fi
|
||||
fi
|
||||
|
||||
AC_SUBST(WXDEBUG)
|
||||
|
||||
if test "$wxUSE_DEBUG_FLAG" = 1 ; then
|
||||
|
@ -55,6 +55,7 @@ INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
||||
INSTALL_DATA = @INSTALL_DATA@
|
||||
AWK = @AWK@
|
||||
LN_S = @LN_S@
|
||||
STRIP = @STRIP@
|
||||
CJPEG_PROG =
|
||||
CONVERT_PATH = /usr/bin/X11
|
||||
CONVERT_PROG = /usr/bin/X11/convert
|
||||
|
@ -24,6 +24,7 @@ s|*INSTALL_PROGRAM*|@INSTALL_PROGRAM@|g
|
||||
s|*INSTALL_DATA*|@INSTALL_DATA@|g
|
||||
s|*AWK*|@AWK@|g
|
||||
s|*LN_S*|@LN_S@|g
|
||||
s|*STRIP*|@STRIP@|g
|
||||
s|*prefix*|@prefix@|g
|
||||
s|*exec_prefix*|@exec_prefix@|g
|
||||
s|*libdir*|@libdir@|g
|
||||
|
Loading…
Reference in New Issue
Block a user