From e701386d1619461a7bd6209817c023150817e680 Mon Sep 17 00:00:00 2001 From: Jerome Haltom Date: Fri, 5 Apr 2024 17:02:49 -0500 Subject: [PATCH] Upgrade musl version to minimum supported on arm. Might need to pick different versions for different targets. Haven't considered that yet. --- ext/musl | 2 +- linux/build.sh | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ext/musl b/ext/musl index ea9525c..85e0e35 160000 --- a/ext/musl +++ b/ext/musl @@ -1 +1 @@ -Subproject commit ea9525c8bcf6170df59364c4bcd616de1acf8703 +Subproject commit 85e0e3519655220688e757b9d5bfd314923548bd diff --git a/linux/build.sh b/linux/build.sh index c9d4274..2de75c1 100755 --- a/linux/build.sh +++ b/linux/build.sh @@ -256,8 +256,9 @@ then mkdir -p $home/util-linux pushd $home/util-linux - PKG_CONFIG_PATH=$dist/lib/pkgconfig \ + PKG_CONFIG_PATH=$dist/lib/pkgconfig:$dist/share/pkgconfig \ PKG_CONFIG_SYSROOT_DIR=$dist \ + LDFLAGS="-L$dist/lib" \ $ext/util-linux/configure \ --host=$SDK_TARGET \ --target=$SDK_TARGET \