From 5481b5adcf47366ddc641f893e2fa79624cf68ca Mon Sep 17 00:00:00 2001 From: Alexander von Gluck IV Date: Tue, 17 Jan 2012 15:46:01 +0000 Subject: [PATCH] scons: Add more machine architectures to the machine map MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * BePC, BeBox, BeMac for Haiku. * Add sparc architecture as Mesa looks for it. Signed-off-by: José Fonseca --- common.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/common.py b/common.py index 2674f327bd8..f0b1ccc2c1f 100644 --- a/common.py +++ b/common.py @@ -31,9 +31,15 @@ _machine_map = { 'i486': 'x86', 'i586': 'x86', 'i686': 'x86', + 'BePC': 'x86', + 'Intel': 'x86', 'ppc' : 'ppc', + 'BeBox': 'ppc', + 'BeMac': 'ppc', 'AMD64': 'x86_64', 'x86_64': 'x86_64', + 'sparc': 'sparc', + 'sun4u': 'sparc', } -- 2.30.2