diff options
author | José Fonseca <jfonseca@vmware.com> | 2010-04-10 03:01:30 +0100 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-04-11 17:17:35 +0900 |
commit | 47a89e9255846f55efe0992c94b65ae7c911dbb3 (patch) | |
tree | 91e7ccf0cb9136189b3ae44bd5c7333a8446f7c8 /src/gallium/targets/graw-xlib | |
parent | 21780adc2ed1b10c5c4c71427b8212b8464d065d (diff) | |
download | external_mesa3d-47a89e9255846f55efe0992c94b65ae7c911dbb3.zip external_mesa3d-47a89e9255846f55efe0992c94b65ae7c911dbb3.tar.gz external_mesa3d-47a89e9255846f55efe0992c94b65ae7c911dbb3.tar.bz2 |
scons: Always build softpipe and llvmpipe (when llvm available).
These are our reference software rasterizers. They can build everywhere
and are a precious debugging tool.
Making them always present immensily simplifies the scons logic.
If people want to avoid building it is still possible to pass
direcotries and target names to scons to narrow the build.
Diffstat (limited to 'src/gallium/targets/graw-xlib')
-rw-r--r-- | src/gallium/targets/graw-xlib/SConscript | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/gallium/targets/graw-xlib/SConscript b/src/gallium/targets/graw-xlib/SConscript index 1b5350a..979252b 100644 --- a/src/gallium/targets/graw-xlib/SConscript +++ b/src/gallium/targets/graw-xlib/SConscript @@ -6,10 +6,6 @@ Import('*') if env['platform'] != 'linux': Return() -if not set(('softpipe', 'llvmpipe', 'cell')).intersection(env['drivers']): - print 'warning: no supported pipe driver: skipping build of xlib libGL.so' - Return() - env = env.Clone() env.Prepend(LIBS = [ @@ -28,11 +24,11 @@ sources = [ 'graw_xlib.c', ] -if 'softpipe' in env['drivers']: +if True: env.Append(CPPDEFINES = 'GALLIUM_SOFTPIPE') env.Prepend(LIBS = [softpipe]) -if 'llvmpipe' in env['drivers']: +if env['llvm']: env.Append(CPPDEFINES = 'GALLIUM_LLVMPIPE') env.Tool('udis86') env.Prepend(LIBS = [llvmpipe]) |