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 | d32ac499b87e188755b5e3245e1d0bc181e6e6ed (patch) | |
tree | faa476e0739ea06fe71e44e6b1150ca1bfc5fa58 /target/Config.in | |
parent | 070c70f3e05d660b019da593c483c2930e5cb03e (diff) | |
download | upstream-d32ac499b87e188755b5e3245e1d0bc181e6e6ed.tar.gz upstream-d32ac499b87e188755b5e3245e1d0bc181e6e6ed.tar.bz2 upstream-d32ac499b87e188755b5e3245e1d0bc181e6e6ed.zip |
buildroot: factor knowledge of a 64bits architecture
Signed-off-by: Florian Fainelli <florian@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36204 3c298f89-4303-0410-b956-a3cf2f4a3e73
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 79a91b1afb..8ff89ff8a9 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 |