diff options
author | Michel Dänzer <michel@tungstengraphics.com> | 2008-03-04 18:30:12 +0100 |
---|---|---|
committer | Michel Dänzer <michel@tungstengraphics.com> | 2008-03-04 18:30:12 +0100 |
commit | 1cd2623a53cb02b491c725f101ee70824ab26a12 (patch) | |
tree | b247131511f3eef155c76fd746c00197d1bec8bb | |
parent | 72c9d4a660e5dd7e2bdb5ccb917388f138adae58 (diff) |
gallium: Make scons build gallivm before other auxiliary modules.
This ensures that the gallivm symbols referenced by the draw module are
resolved properly.
-rw-r--r-- | src/gallium/SConscript | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/SConscript b/src/gallium/SConscript index fa4833cbcf..f09778ce99 100644 --- a/src/gallium/SConscript +++ b/src/gallium/SConscript @@ -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')) |