mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
gallium: Make scons build gallivm before other auxiliary modules.
This ensures that the gallivm symbols referenced by the draw module are resolved properly.
This commit is contained in:
parent
72c9d4a660
commit
1cd2623a53
1 changed files with 3 additions and 3 deletions
|
|
@ -9,6 +9,9 @@ auxiliaries = []
|
|||
Export('auxiliaries')
|
||||
|
||||
|
||||
if llvm:
|
||||
SConscript(['auxiliary/gallivm/SConscript'])
|
||||
|
||||
SConscript([
|
||||
# NOTE: order matters!
|
||||
'auxiliary/util/SConscript',
|
||||
|
|
@ -19,8 +22,5 @@ SConscript([
|
|||
'auxiliary/pipebuffer/SConscript',
|
||||
])
|
||||
|
||||
if llvm:
|
||||
SConscript(['auxiliary/gallivm/SConscript'])
|
||||
|
||||
for driver in env['drivers']:
|
||||
SConscript(os.path.join('drivers', driver, 'SConscript'))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue