From 47a89e9255846f55efe0992c94b65ae7c911dbb3 Mon Sep 17 00:00:00 2001 From: José Fonseca Date: Sat, 10 Apr 2010 03:01:30 +0100 Subject: 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. --- SConstruct | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index ebced16c0c..fdcd72b30d 100644 --- a/SConstruct +++ b/SConstruct @@ -102,11 +102,15 @@ Export([ ####################################################################### # Environment setup -# Always build trace and identity drivers +# Always build trace, identity, softpipe, and llvmpipe (where possible) if 'trace' not in env['drivers']: env['drivers'].append('trace') if 'identity' not in env['drivers']: env['drivers'].append('identity') +if 'softpipe' not in env['drivers']: + env['drivers'].append('softpipe') +if env['llvm'] and 'llvmpipe' not in env['drivers']: + env['drivers'].append('llvmpipe') # Includes env.Append(CPPPATH = [ -- cgit v1.2.3