mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
scons: Recognize 'AMD64' processor as well.
This commit is contained in:
parent
590c2ee568
commit
33d8ff9c31
2 changed files with 2 additions and 0 deletions
|
|
@ -30,6 +30,7 @@ _machine_map = {
|
|||
'i586': 'x86',
|
||||
'i686': 'x86',
|
||||
'ppc' : 'ppc',
|
||||
'AMD64': 'x86_64',
|
||||
'x86_64': 'x86_64',
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -203,6 +203,7 @@ def generate(env):
|
|||
'i586': 'x86',
|
||||
'i686': 'x86',
|
||||
'ppc' : 'ppc',
|
||||
'AMD64': 'x86_64',
|
||||
'x86_64': 'x86_64',
|
||||
}.get(host_machine, 'generic')
|
||||
env['crosscompile'] = platform != host_platform
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue