diff options
author | Alexander von Gluck IV <kallisti5@unixzen.com> | 2012-01-17 15:46:01 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2012-01-18 16:46:16 +0000 |
commit | 5481b5adcf47366ddc641f893e2fa79624cf68ca (patch) | |
tree | 9585c0fd4557f5508662c85973fc13b9b7a098ab /common.py | |
parent | 0196433ce55b7e005c483bd7c411844eb44e983b (diff) | |
download | mesa-5481b5adcf47366ddc641f893e2fa79624cf68ca.tar.gz |
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 <jfonseca@vmware.com>
Diffstat (limited to 'common.py')
-rw-r--r-- | common.py | 6 |
1 files changed, 6 insertions, 0 deletions
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', } |