mirror of
git://git.savannah.gnu.org/libtool.git
synced 2025-02-17 15:10:02 +08:00
* libltdl/config/ltmain.m4sh (func_mode_link): Strip the cwrapper
using $STRIP instead of relying on the tools to support -s, which MSVC doesn't.
This commit is contained in:
parent
688e0a551c
commit
5a3cf05510
@ -1,3 +1,9 @@
|
||||
2007-07-12 Peter Rosin <peda@lysator.liu.se>
|
||||
|
||||
* libltdl/config/ltmain.m4sh (func_mode_link): Strip the cwrapper
|
||||
using $STRIP instead of relying on the tools to support -s, which
|
||||
MSVC doesn't.
|
||||
|
||||
2007-07-06 Peter O'Gorman <peter@pogma.com
|
||||
|
||||
* libltdl/config/libtool.m4sh: Don't pass -msg_* through to the
|
||||
|
@ -6804,7 +6804,10 @@ EOF
|
||||
# are only useful if you want to execute the "real" binary.
|
||||
# Since the "real" binary is built for $host, then this
|
||||
# wrapper might as well be built for $host, too.
|
||||
$opt_dry_run || $LTCC $LTCFLAGS -s -o $cwrapper $cwrappersource
|
||||
$opt_dry_run || {
|
||||
$LTCC $LTCFLAGS -o $cwrapper $cwrappersource
|
||||
$STRIP $cwrapper
|
||||
}
|
||||
|
||||
# Now, create the wrapper script for func_source use:
|
||||
func_ltwrapper_scriptname $cwrapper
|
||||
|
Loading…
Reference in New Issue
Block a user