diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-08-12 14:32:28 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-08-12 14:32:28 +0200 |
commit | f04227421063498a88707c43ec80b2b70d9b8d83 (patch) | |
tree | 189393a32f3af46500594d744010913ebebc1f2b /package/Makefile | |
parent | 7a8e9c0ea181628555861fb4bbd3760ed1ca80e2 (diff) |
complete musl support, tested with qemu-arm
Diffstat (limited to 'package/Makefile')
-rw-r--r-- | package/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/package/Makefile b/package/Makefile index 9cf448ff8..85321f9ee 100644 --- a/package/Makefile +++ b/package/Makefile @@ -13,6 +13,10 @@ ifeq (${ADK_TARGET_LIB_EGLIBC},y) package-$(ADK_PACKAGE_EGLIBC) += eglibc gcc-compile: eglibc-compile endif +ifeq (${ADK_TARGET_LIB_MUSL},y) +package-$(ADK_PACKAGE_MUSL) += musl +gcc-compile: musl-compile +endif ifeq (${ADK_NATIVE},y) package-$(ADK_PACKAGE_LIBC) += libc endif |