summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEzequiel Garcia <ezequiel@vanguardiasur.com.ar>2016-09-02 11:21:03 -0300
committerPeter Korsgaard <peter@korsgaard.com>2016-09-20 14:28:34 +0200
commiteb0863636041cebbcd1dfa24a94886503dd19b36 (patch)
tree46c0c1cc73ec256ac9338eb5e0aea7c192b3cb74
parent9e895b44b8135952518df47010930b7cdd253737 (diff)
downloadbuildroot-eb0863636041cebbcd1dfa24a94886503dd19b36.tar.gz
buildroot-eb0863636041cebbcd1dfa24a94886503dd19b36.zip
supertuxkart: Constrain to x86 architecture
Our build system has detected that angelscript can't be cross-compiled properly. This has been also reported to supertuxkart [1], and although the developers were open to take patches fixing STK embedded angelscript, it was pointed out that non-x86 architectures were not officially supported and of little interest [2]. Hence, let's constrain the package selection and the host architecture to x86. [1] https://github.com/supertuxkart/stk-code/issues/2569 [2] https://github.com/supertuxkart/stk-code/pull/2195 Fixes: http://autobuild.buildroot.net/results/655/655f046b3bb5f7a4ea492328b608e409d6769689/ Signed-off-by: Ezequiel Garcia <ezequiel@vanguardiasur.com.ar> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r--package/supertuxkart/Config.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/package/supertuxkart/Config.in b/package/supertuxkart/Config.in
index a1f7074eb7..4919b50a2b 100644
--- a/package/supertuxkart/Config.in
+++ b/package/supertuxkart/Config.in
@@ -1,5 +1,7 @@
config BR2_PACKAGE_SUPERTUXKART
bool "supertuxkart"
+ depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
+ depends on BR2_i386 || BR2_x86_64
depends on BR2_USE_MMU # fork()
depends on BR2_INSTALL_LIBSTDCPP # openal
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL # openal
@@ -25,6 +27,8 @@ config BR2_PACKAGE_SUPERTUXKART
http://supertuxkart.sourceforge.net/Main_Page
comment "supertuxkart needs an OpenGL backend, a uClibc or glibc toolchain w/ NPTL, C++"
+ depends on BR2_HOSTARCH = "x86_64" || BR2_HOSTARCH = "x86"
+ depends on BR2_i386 || BR2_x86_64
depends on BR2_USE_MMU
depends on BR2_PACKAGE_OPENAL_ARCH_SUPPORTS
depends on BR2_PACKAGE_XORG7
OpenPOWER on IntegriCloud