Differences From Artifact [d0e235eb57]:
- File
kitsh/buildsrc/kitsh-0.0/aclocal.m4
— part of check-in
[636da30116]
at
2010-09-26 04:39:19
on branch trunk
— Corrected check for mk4tcl to actually be functional
Removed support of "config.h" and started passing all defines on the command line (user: rkeene, size: 2044) [annotate] [blame] [check-ins using]
To Artifact [5d0cdc97c7]:
- File
kitsh/buildsrc/kitsh-0.0/aclocal.m4
— part of check-in
[cb76e549e7]
at
2010-09-26 04:39:39
on branch trunk
— Updated to try linking to Sun Studio before GNU Libstdc++
Updated to fix FFF 484 to make resultant kit work on 64-bit big endian systems (user: rkeene, size: 2044) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
41 42 43 44 45 46 47 | ]) AC_DEFUN(DC_DO_STATIC_LINK_LIBCXX, [ AC_MSG_CHECKING([for how to statically link to libstdc++]) SAVELIBS="${LIBS}" staticlibcxx="" | | | 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | ]) AC_DEFUN(DC_DO_STATIC_LINK_LIBCXX, [ AC_MSG_CHECKING([for how to statically link to libstdc++]) SAVELIBS="${LIBS}" staticlibcxx="" for trylink in "-Wl,-Bstatic -lCstd -lCrun -Wl,-Bdynamic" "-Wl,-Bstatic -lstdc++ -Wl,-Bdynamic" "-lCstd -lCrun" "-lstdc++"; do LIBS="${SAVELIBS} ${trylink}" AC_LINK_IFELSE(AC_LANG_PROGRAM([], []), [ staticlibcxx="${trylink}" break ]) |
︙ | ︙ |