diff options
author | das <das> | 2006-11-26 06:05:18 (GMT) |
---|---|---|
committer | das <das> | 2006-11-26 06:05:18 (GMT) |
commit | d41ab6205872b1d12cfed06affa0795065da8f7c (patch) | |
tree | e54bdb5fb991ce650ccf0274bf69ce004e216e21 /unix/tcl.m4 | |
parent | ec8201df38d7532a9f2119e81c51fa849773a1e7 (diff) | |
download | tk-d41ab6205872b1d12cfed06affa0795065da8f7c.zip tk-d41ab6205872b1d12cfed06affa0795065da8f7c.tar.gz tk-d41ab6205872b1d12cfed06affa0795065da8f7c.tar.bz2 |
* tcl.m4 (Linux): --enable-64bit support. [Patch 1597389], [Bug 1230558]
* configure: autoconf-2.13
Diffstat (limited to 'unix/tcl.m4')
-rw-r--r-- | unix/tcl.m4 | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/unix/tcl.m4 b/unix/tcl.m4 index d6565a7..f3d9f1b 100644 --- a/unix/tcl.m4 +++ b/unix/tcl.m4 @@ -1341,7 +1341,7 @@ dnl AC_CHECK_TOOL(AR, ar) #CFLAGS_OPTIMIZE="${CFLAGS_OPTIMIZE} -D__NO_STRING_INLINES -D__NO_MATH_INLINES" if test "$have_dl" = yes; then - SHLIB_LD="${CC} -shared" + SHLIB_LD='${CC} -shared ${CFLAGS} ${LDFLAGS}' DL_OBJS="tclLoadDl.o" DL_LIBS="-ldl" LDFLAGS="$LDFLAGS -Wl,--export-dynamic" @@ -1358,6 +1358,17 @@ dnl AC_CHECK_TOOL(AR, ar) if test "`uname -m`" = "alpha" ; then CFLAGS="$CFLAGS -mieee" fi + if test $do64bit = yes; then + AC_CACHE_CHECK([if compiler accepts -m64 flag], tcl_cv_cc_m64, [ + hold_cflags=$CFLAGS + CFLAGS="$CFLAGS -m64" + AC_TRY_LINK(,, tcl_cv_cc_m64=yes, tcl_cv_cc_m64=no) + CFLAGS=$hold_cflags]) + if test $tcl_cv_cc_m64 = yes; then + CFLAGS="$CFLAGS -m64" + do64bit_ok=yes + fi + fi # The combo of gcc + glibc has a bug related # to inlining of functions like strtod(). The |