summaryrefslogtreecommitdiff
path: root/toolchain/musl
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-03-01 09:07:37 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-03-01 09:07:37 +0100
commit36b959a9b9a450f0789ecc6d10292efbc1f1eccd (patch)
tree7ba439de3f1ea0a6c3f39253ed17d9a910dc28cc /toolchain/musl
parentf059dbadc9ba64b475511622166db0719ec91193 (diff)
remove armeb, no hardware, no emulator to test, add armhf instead. fix some toolchain archive creation issues, remove unneeded files before packaging.
Diffstat (limited to 'toolchain/musl')
-rw-r--r--toolchain/musl/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/toolchain/musl/Makefile b/toolchain/musl/Makefile
index 44ee75775..14f96ab6e 100644
--- a/toolchain/musl/Makefile
+++ b/toolchain/musl/Makefile
@@ -54,6 +54,10 @@ $(WRKBUILD)/.fixup:
)
$(MAKE) CFLAGS='$(TARGET_CFLAGS)' -C $(WRKBUILD) all
$(MAKE) -C $(WRKBUILD) DESTDIR=$(STAGING_TARGET_DIR) install
+ # cleanup toolchain
+ -find $(STAGING_TARGET_DIR) $(STAGING_HOST_DIR) -name \*.la -delete
+ PATH="$(TARGET_PATH)" prefix='${TARGET_CROSS}' ${BASH} ${SCRIPT_DIR}/rstrip.sh $(STAGING_TARGET_DIR)
+ prefix=' ' ${BASH} ${SCRIPT_DIR}/rstrip.sh $(STAGING_HOST_DIR)
touch $@
include ${TOPDIR}/mk/toolchain.mk