mirror of
git://git.savannah.gnu.org/libtool.git
synced 2024-11-27 06:09:57 +08:00
Fix match patterns for cegcc*.
* libltdl/config/ltmain.m4sh (func_mode_link): Match '*cegcc*' instead of '*cegcc' for $host_os. * libltdl/m4/libtool.m4 (_LT_CHECK_MAGIC_METHOD): Likewise. * tests/lt_dladvise.at (lt_dlopenadvise library loading): Likewise. * libltdl/m4/ltoptions.m4 (AC_LIBTOOL_DLOPEN): Match '*-*-cegcc*' for $host. Signed-off-by: Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
This commit is contained in:
parent
1ae7ff35f2
commit
4e7334c7c2
@ -1,5 +1,14 @@
|
||||
2008-11-20 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
|
||||
|
||||
Fix match patterns for cegcc*.
|
||||
* libltdl/config/ltmain.m4sh (func_mode_link): Match '*cegcc*'
|
||||
instead of '*cegcc' for $host_os.
|
||||
* libltdl/m4/libtool.m4 (_LT_CHECK_MAGIC_METHOD): Likewise.
|
||||
* tests/lt_dladvise.at (lt_dlopenadvise library loading):
|
||||
Likewise.
|
||||
* libltdl/m4/ltoptions.m4 (AC_LIBTOOL_DLOPEN): Match
|
||||
'*-*-cegcc*' for $host.
|
||||
|
||||
Ensure $ac_aux_dir is initialized for LIBTOOL_DEPS.
|
||||
* libltdl/m4/libtool.m4 (LT_INIT): Require
|
||||
AC_CONFIG_AUX_DIR_DEFAULT.
|
||||
|
@ -7382,7 +7382,7 @@ EOF
|
||||
wrappers_required=no
|
||||
fi
|
||||
;;
|
||||
*cegcc)
|
||||
*cegcc*)
|
||||
# Disable wrappers for cegcc, we are cross compiling anyway.
|
||||
wrappers_required=no
|
||||
;;
|
||||
|
2
libltdl/m4/libtool.m4
vendored
2
libltdl/m4/libtool.m4
vendored
@ -2931,7 +2931,7 @@ mingw* | pw32*)
|
||||
fi
|
||||
;;
|
||||
|
||||
cegcc)
|
||||
cegcc*)
|
||||
# use the weaker test based on 'objdump'. See mingw*.
|
||||
lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
|
||||
lt_cv_file_magic_cmd='$OBJDUMP -f'
|
||||
|
2
libltdl/m4/ltoptions.m4
vendored
2
libltdl/m4/ltoptions.m4
vendored
@ -125,7 +125,7 @@ LT_OPTION_DEFINE([LT_INIT], [win32-dll],
|
||||
[enable_win32_dll=yes
|
||||
|
||||
case $host in
|
||||
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*)
|
||||
*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
|
||||
AC_CHECK_TOOL(AS, as, false)
|
||||
AC_CHECK_TOOL(DLLTOOL, dlltool, false)
|
||||
AC_CHECK_TOOL(OBJDUMP, objdump, false)
|
||||
|
@ -319,7 +319,7 @@ dlpreloadable='preload'
|
||||
# ------------------------------------------------------------------------- #
|
||||
|
||||
case $host_os in
|
||||
cygwin* | mingw*)
|
||||
cygwin* | mingw* | cegcc*)
|
||||
# These hosts do not support linking without -no-undefined
|
||||
CPPFLAGS="$CPPFLAGS -DHAVE_UNDEFINED_SYMBOLS=0"
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user