From: Alexander von Gluck IV Date: Tue, 17 Jan 2012 15:46:01 +0000 (+0000) Subject: scons: Add more machine architectures to the machine map X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=5481b5adcf47366ddc641f893e2fa79624cf68ca;p=mesa.git scons: Add more machine architectures to the machine map * BePC, BeBox, BeMac for Haiku. * Add sparc architecture as Mesa looks for it. Signed-off-by: José Fonseca --- 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', }