diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-04-05 12:36:19 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-04-05 12:36:19 +0000 |
commit | 348cae15d2934f07a6c584261c2bee49cc43bbbd (patch) | |
tree | 5241e259d5acbebd270a980d9682235dff0d0211 /target/Config.in | |
parent | 46dfa04a083d6d08c31c9fd1f38bceb398f5dabe (diff) | |
download | mtk-20170518-348cae15d2934f07a6c584261c2bee49cc43bbbd.zip mtk-20170518-348cae15d2934f07a6c584261c2bee49cc43bbbd.tar.gz mtk-20170518-348cae15d2934f07a6c584261c2bee49cc43bbbd.tar.bz2 |
buildroot: factor knowledge of a 64bits architecture
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 36204
Diffstat (limited to 'target/Config.in')
-rw-r--r-- | target/Config.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/target/Config.in b/target/Config.in index 79a91b1..8ff89ff 100644 --- a/target/Config.in +++ b/target/Config.in @@ -70,6 +70,9 @@ config HAS_MIPS16 depends (mips || mipsel || mips64 || mips64el) bool +config ARCH_64BIT + bool + # Architecture selection config arm @@ -104,9 +107,11 @@ config mipsel config mips64 select BIG_ENDIAN + select ARCH_64BIT bool config mips64el + select ARCH_64BIT bool config powerpc @@ -115,6 +120,7 @@ config powerpc config powerpc64 select BIG_ENDIAN + select ARCH_64BIT bool config sh3 @@ -136,6 +142,7 @@ config sparc bool config x86_64 + select ARCH_64BIT bool config ARCH |