diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-01 13:41:21 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-01 13:41:21 +0100 |
commit | abe3b8f248e747fa1267b2260f9605987aa0c41d (patch) | |
tree | 8a79b062551e4f9bfa2de6b76b3d068d12aa2d09 /package/musl | |
parent | 4346edab2ed56943ea4f7bc61380dfeab65817d4 (diff) |
add basic support for x86_64 x32 abi, convert to miniconfig
Diffstat (limited to 'package/musl')
-rw-r--r-- | package/musl/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/musl/Makefile b/package/musl/Makefile index ad7ec664f..3341c83a8 100644 --- a/package/musl/Makefile +++ b/package/musl/Makefile @@ -49,6 +49,9 @@ endif ifeq ($(ADK_TARGET_SYSTEM_RASPBERRY_PI),y) MARCH:= armhf endif +ifeq ($(ADK_TARGET_ABI_X32),y) +MARCH:= x32 +endif # do nothing, musl is already build in toolchain directory do-install: |