Check-in [fe66a5f969]
Overview
Comment:Updated build system to use new build-cc name for static compilers
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: fe66a5f969f4e75127c4df1e0ee8a78e852c2f1b
User & Date: rkeene on 2015-02-02 18:38:54
Other Links: manifest | tags
Context
2015-03-16
01:00
Added Tcl 8.6.4 and 8.5.18 to web builder check-in: 94f775def7 user: rkeene tags: trunk
2015-02-09
18:39
Merge updates from trunk. check-in: 5574242e95 user: mistachkin tags: winFixes
2015-02-02
18:38
Updated build system to use new build-cc name for static compilers check-in: fe66a5f969 user: rkeene tags: trunk
2015-01-29
16:04
Updated to build in /tmp check-in: dc10f57db2 user: rkeene tags: trunk
Changes

Modified build/make-kit-linux-amd64-static from [29293c0e29] to [ec234cb947].

1
2
3
4
5
6
7
8
9
10
#! /bin/sh

CROSS="x86_64-unknown-linux-musl"
CC_ADD="-m64"
if ! echo " ${KITCREATOR_PKGS} " | grep ' kitdll ' >/dev/null; then
	KC_KITSH_LDFLAGS="${KC_KITSH_FLAGS} -static"
fi
export CROSS CC_ADD KC_KITSH_LDFLAGS

./build/make-kit-crosscompile "$@" --enable-64bit


|







1
2
3
4
5
6
7
8
9
10
#! /bin/sh

CROSS="x86_64-generic-linux-musl"
CC_ADD="-m64"
if ! echo " ${KITCREATOR_PKGS} " | grep ' kitdll ' >/dev/null; then
	KC_KITSH_LDFLAGS="${KC_KITSH_FLAGS} -static"
fi
export CROSS CC_ADD KC_KITSH_LDFLAGS

./build/make-kit-crosscompile "$@" --enable-64bit

Modified build/make-kit-linux-i386-static from [e5bf480fa0] to [e2bdf96001].

1
2
3
4
5
6
7
8
9
10
#! /bin/sh

CROSS="x86_64-unknown-linux-musl"
CC_ADD='-m32'
if ! echo " ${KITCREATOR_PKGS} " | grep ' kitdll ' >/dev/null; then
	KC_KITSH_LDFLAGS="${KC_KITSH_FLAGS} -static"
fi
export CROSS CC_ADD KC_KITSH_LDFLAGS

./build/make-kit-crosscompile "$@"


|







1
2
3
4
5
6
7
8
9
10
#! /bin/sh

CROSS="x86_64-generic-linux-musl"
CC_ADD='-m32'
if ! echo " ${KITCREATOR_PKGS} " | grep ' kitdll ' >/dev/null; then
	KC_KITSH_LDFLAGS="${KC_KITSH_FLAGS} -static"
fi
export CROSS CC_ADD KC_KITSH_LDFLAGS

./build/make-kit-crosscompile "$@"