diff options
author | Joakim Sindholt <opensource@zhasha.com> | 2010-06-05 16:53:38 +0200 |
---|---|---|
committer | Joakim Sindholt <opensource@zhasha.com> | 2010-06-05 17:19:46 +0200 |
commit | fb08e03ae1d43e668b85a5673253353aa59bebad (patch) | |
tree | 7f3fd6fa55fe5adff0fb6a8b5864a274336be724 /SConstruct | |
parent | 4a329c67bc5e7a0259adc94831ac13c6c8f9f272 (diff) |
gallium: always build drivers/sw
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct index 1c8a00cce9..76ada41f55 100644 --- a/SConstruct +++ b/SConstruct @@ -136,6 +136,8 @@ if 'softpipe' not in env['drivers']: env['drivers'].append('softpipe') if env['llvm'] and 'llvmpipe' not in env['drivers']: env['drivers'].append('llvmpipe') +if 'sw' not in env['drivers']: + env['drivers'].append('sw') # Includes env.Prepend(CPPPATH = [ |