diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rwxr-xr-x | unix/configure | 4 | ||||
-rw-r--r-- | unix/tcl.m4 | 4 |
3 files changed, 13 insertions, 4 deletions
@@ -1,3 +1,12 @@ +2003-03-27 Mo DeJong <mdejong@users.sourceforge.net> + + * unix/configure: Regen. + * unix/tcl.m4 (SC_CONFIG_CFLAGS): Use -Wl,--export-dynamic + instead of -rdynamic for LDFLAGS. The -rdynamic is + not documented so it seems better to pass the + --export-dynamic flag to the linker. + [Patch 573395] + 2003-03-27 Miguel Sofer <msofer@users.sf.net> * tests/encoding.test: diff --git a/unix/configure b/unix/configure index e6bce4d..ffa27a9 100755 --- a/unix/configure +++ b/unix/configure @@ -11256,7 +11256,7 @@ echo "$as_me: WARNING: 64bit mode not supported by gcc" >&2;} SHLIB_LD="${CC} -shared" DL_OBJS="tclLoadDl.o" DL_LIBS="-ldl" - LDFLAGS="-rdynamic" + LDFLAGS="-Wl,--export-dynamic" CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS} else @@ -11432,7 +11432,7 @@ _ACEOF SHLIB_LD="${CC} -shared" DL_OBJS="" DL_LIBS="-ldl" - LDFLAGS="-rdynamic" + LDFLAGS="-Wl,--export-dynamic" CC_SEARCH_FLAGS="" LD_SEARCH_FLAGS="" else diff --git a/unix/tcl.m4 b/unix/tcl.m4 index 239fe4c..67128a2 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1117,7 +1117,7 @@ dnl AC_CHECK_TOOL(AR, ar) SHLIB_LD="${CC} -shared" DL_OBJS="tclLoadDl.o" DL_LIBS="-ldl" - LDFLAGS="-rdynamic" + LDFLAGS="-Wl,--export-dynamic" CC_SEARCH_FLAGS='-Wl,-rpath,${LIB_RUNTIME_DIR}' LD_SEARCH_FLAGS=${CC_SEARCH_FLAGS} else @@ -1157,7 +1157,7 @@ dnl AC_CHECK_TOOL(AR, ar) SHLIB_LD="${CC} -shared" DL_OBJS="" DL_LIBS="-ldl" - LDFLAGS="-rdynamic" + LDFLAGS="-Wl,--export-dynamic" CC_SEARCH_FLAGS="" LD_SEARCH_FLAGS="" else |