diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2012-10-09 00:06:58 +0200 |
---|---|---|
committer | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2012-10-09 00:06:58 +0200 |
commit | 0b6d38874b6e94807f58ab8b46160ce6faf0ed35 (patch) | |
tree | 28489d7ed0cf8c2e85f2720901776cb87738eb70 /target/config | |
parent | 9b4c76f53079cf85baf6d9724675c6cdddf6151f (diff) |
enable multilib support for mips
Diffstat (limited to 'target/config')
-rw-r--r-- | target/config/Config.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/config/Config.in b/target/config/Config.in index 5dd14a6d1..893751686 100644 --- a/target/config/Config.in +++ b/target/config/Config.in @@ -127,6 +127,21 @@ depends on ADK_TARGET_KERNEL64 && \ config ADK_TARGET_WITH_MULTILIB boolean "multilib support" +config ADK_TARGET_MULTILIB_MIPS_64 + boolean "64 bit libraries (n64 abi)" + depends on ADK_LINUX_MIPS && ADK_TARGET_WITH_MULTILIB + default y if ADK_n64 + +config ADK_TARGET_MULTILIB_MIPS_N32 + boolean "32 bit libraries (n32 abi)" + depends on ADK_LINUX_MIPS && ADK_TARGET_WITH_MULTILIB + default y if ADK_n32 + +config ADK_TARGET_MULTILIB_MIPS_O32 + boolean "32 bit libraries (o32 abi)" + depends on ADK_LINUX_MIPS && ADK_TARGET_WITH_MULTILIB + default y if ADK_o32 + config ADK_TARGET_MULTILIB_X86_64 boolean "64 bit libraries" depends on ADK_LINUX_X86_64 && ADK_TARGET_WITH_MULTILIB |