mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-25 12:38:11 +02:00
This ensures that the gallivm symbols referenced by the draw module are resolved properly.
26 lines
463 B
Python
26 lines
463 B
Python
import os
|
|
|
|
Import('*')
|
|
|
|
env = env.Clone()
|
|
|
|
auxiliaries = []
|
|
|
|
Export('auxiliaries')
|
|
|
|
|
|
if llvm:
|
|
SConscript(['auxiliary/gallivm/SConscript'])
|
|
|
|
SConscript([
|
|
# NOTE: order matters!
|
|
'auxiliary/util/SConscript',
|
|
'auxiliary/rtasm/SConscript',
|
|
'auxiliary/tgsi/SConscript',
|
|
'auxiliary/cso_cache/SConscript',
|
|
'auxiliary/draw/SConscript',
|
|
'auxiliary/pipebuffer/SConscript',
|
|
])
|
|
|
|
for driver in env['drivers']:
|
|
SConscript(os.path.join('drivers', driver, 'SConscript'))
|