Differences From Artifact [abd6ccb011]:
- File
kitsh/buildsrc/kitsh-0.0/aclocal.m4
— part of check-in
[ea89461e7c]
at
2010-09-26 04:38:55
on branch trunk
— Updated to check for define subprojects working as found
Updated to only link against C++ libs if Mk4tcl worked
Updated to check for MK4TCL available before referencing it
Added SunStudio C++ libraries (user: rkeene, size: 2035) [annotate] [blame] [check-ins using]
To Artifact [6f2999f5b1]:
- File kitsh/buildsrc/kitsh-0.0/aclocal.m4 — part of check-in [c16db35fe7] at 2010-09-26 04:39:11 on branch trunk — Updated to provide an empty input file to AC_LINK_IFELSE. It seems to need this. (user: rkeene, size: 2058) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
44 45 46 47 48 49 50 | AC_MSG_CHECKING([for how to statically link to libstdc++]) SAVELIBS="${LIBS}" staticlibcxx="" for trylink in "-Wl,-Bstatic -lstdc++ -Wl,-Bdynamic" "-Wl,-Bstatic -lCstd -lCrun -Wl,-Bdynamic" "-lstdc++" "-lCstd -lCrun"; do LIBS="${SAVELIBS} ${trylink}" | | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | AC_MSG_CHECKING([for how to statically link to libstdc++]) SAVELIBS="${LIBS}" staticlibcxx="" for trylink in "-Wl,-Bstatic -lstdc++ -Wl,-Bdynamic" "-Wl,-Bstatic -lCstd -lCrun -Wl,-Bdynamic" "-lstdc++" "-lCstd -lCrun"; do LIBS="${SAVELIBS} ${trylink}" AC_LINK_IFELSE(AC_LANG_PROGRAM([], []), [ staticlibcxx="${trylink}" break ]) done LIBS="${SAVELIBS} ${staticlibcxx}" |
︙ | ︙ |