From 38de9074ff1effefa08bfc71471a97cd0658c10c Mon Sep 17 00:00:00 2001 From: Mitch Riedstra Date: Thu, 19 Apr 2018 00:11:14 -0400 Subject: Attempts to build zlib, libressl, dropbear, and... openssh with musl using the host's toolchain. I'm going to be moving to a toolchain specific to this system. Also changed how the kernel is installed, so it makes more sense. Fixed missing sources for many projects --- scripts/musl.sh | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'scripts/musl.sh') diff --git a/scripts/musl.sh b/scripts/musl.sh index ed6d1bb..24cd9d1 100644 --- a/scripts/musl.sh +++ b/scripts/musl.sh @@ -4,10 +4,11 @@ VERSION="1.1.19" cd $build_dir gzip -dc < ${dist_dir}/musl-$VERSION.tar.gz | tar -xvf - cd musl-$VERSION -./configure --prefix=$prefix/usr/local/musl # --enable-static +MUSL_OPTS="--enable-static --enable-shared" +./configure --prefix=$prefix/usr/local/musl $MUSL_OPTS make -j$(nproc) make install -# export DESTDIR=$prefix -# ./configure --prefix=/usr --enable-static -# make install +export DESTDIR=$prefix +./configure --prefix=/usr $MUSL_OPTS +make install -- cgit v1.2.3