Check-in [1ec331082c]
Overview
Comment:Updated MIPS test builds to be MUSL (static) based instead of uClibc
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: 1ec331082cb5e94cee35892928fe7d79e847e8de
User & Date: rkeene on 2014-07-05 00:04:34
Other Links: manifest | tags
Context
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
00:03
Updated install-sh check-in: d1a62f7c5d user: rkeene tags: trunk
Changes

Modified build/make-kit-linux-mipsel from [819d882cb2] to [a970763cc4].

1
2
3

4
5
6
#! /bin/sh

CROSS="mipsel-unknown-linux-uclibc"

export CROSS

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


|
>
|


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 "$@"