From 9e751178eb45d048d6edafdd13663fd2dea047f9 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 27 Jun 2016 03:03:42 +0200 Subject: [PATCH] Fix compiling for X11 on non-86, this fixes #5444 --- platform/x11/detect.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 5f272536bad..54940866b21 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -209,5 +209,7 @@ def configure(env): if (env["use_static_cpp"]=="yes"): env.Append(LINKFLAGS=['-static-libstdc++']) - env["x86_opt_gcc"]=True + list_of_x86 = ['x86_64', 'x86', 'i386', 'i586'] + if any(platform.machine() in s for s in list_of_x86): + env["x86_opt_gcc"]=True