Check-in [d2a5640fe0]
Overview
Comment:Updated to not link statically if we are building a KitDLL for Linux/MUSL on MIPS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: d2a5640fe018699858879581bee545d968d813d6
User & Date: rkeene on 2014-07-05 00:12:10
Other Links: manifest | tags
Context
2014-07-07
05:03
Updated to look for SSL in compiler standard place rather than guessing for it as is the TclTLS default check-in: b302c42baf user: rkeene tags: trunk
2014-07-05
00:12
Updated to not link statically if we are building a KitDLL for Linux/MUSL on MIPS check-in: d2a5640fe0 user: rkeene tags: trunk
00:04
Updated MIPS test builds to be MUSL (static) based instead of uClibc check-in: 1ec331082c user: rkeene tags: trunk
Changes

Modified build/make-kit-linux-mipsel from [a970763cc4] to [285ebb90fe].

1
2
3

4

5
6
7
#! /bin/sh

CROSS="mips-unknown-linux-musl"

KC_KITSH_LDFLAGS='-static'

export CROSS KC_KITSH_LDFLAGS

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



>
|
>



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

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

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