Overview
Comment: | Updated to build Solaris tclkits with -static-libgcc |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: | ce3198239beab8f3740da6fd7da900a171cfb86e |
User & Date: | rkeene on 2012-08-20 02:53:28 |
Other Links: | manifest | tags |
Context
2012-08-20
| ||
03:44 | Removed Tcl 8.4.x from nightly tests check-in: 433983bef9 user: rkeene tags: trunk | |
02:53 | Updated to build Solaris tclkits with -static-libgcc check-in: ce3198239b user: rkeene tags: trunk | |
2012-08-03
| ||
14:42 | Updated test suite to use Tcl/Tk 8.5.12 check-in: f3de07d723 user: rkeene tags: trunk | |
Changes
Modified build/make-kit-solaris-amd64 from [c26413604c] to [a0be11fa93].
1 2 3 4 5 6 7 |
#! /bin/sh CROSS="i386-pc-solaris2.10" CC_ADD="-m64" export CROSS CC_ADD ./build/make-kit-crosscompile "$@" --enable-64bit |
| |
1 2 3 4 5 6 7 |
#! /bin/sh
CROSS="i386-pc-solaris2.10"
CC_ADD="-m64 -static-libgcc"
export CROSS CC_ADD
./build/make-kit-crosscompile "$@" --enable-64bit
|
Modified build/make-kit-solaris-i386 from [439be66c77] to [dc2b589695].
1 2 3 4 5 6 |
#! /bin/sh CROSS="i386-pc-solaris2.10" export CROSS ./build/make-kit-crosscompile "$@" |
> | |
1 2 3 4 5 6 7 |
#! /bin/sh CROSS="i386-pc-solaris2.10" CC_ADD="-static-libgcc" export CROSS CC_ADD ./build/make-kit-crosscompile "$@" |
Modified build/make-kit-solaris-sparc from [254a2abc5d] to [588c151e87].
1 2 3 4 5 6 |
#! /bin/sh CROSS="sparc-sun-solaris2.8" export CROSS ./build/make-kit-crosscompile "$@" |
> | |
1 2 3 4 5 6 7 |
#! /bin/sh CROSS="sparc-sun-solaris2.8" CC_ADD="-static-libgcc" export CROSS CC_ADD ./build/make-kit-crosscompile "$@" |
Modified build/make-kit-solaris-sparc64 from [6963705c4b] to [8ba9bf5c8d].
1 2 3 4 5 6 7 |
#! /bin/sh CROSS="sparc-sun-solaris2.8" CC_ADD="-m64" export CROSS CC_ADD ./build/make-kit-crosscompile "$@" --enable-64bit |
| |
1 2 3 4 5 6 7 |
#! /bin/sh
CROSS="sparc-sun-solaris2.8"
CC_ADD="-m64 -static-libgcc"
export CROSS CC_ADD
./build/make-kit-crosscompile "$@" --enable-64bit
|