From 2c3fb4ecce27f4c2468892241216a06fc77143c4 Mon Sep 17 00:00:00 2001 From: Jakob Bornecrantz Date: Tue, 4 May 2010 12:06:37 +0100 Subject: rbug: Break out of trace --- SConstruct | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'SConstruct') diff --git a/SConstruct b/SConstruct index 3a4ff9a3fa..5181e1957f 100644 --- a/SConstruct +++ b/SConstruct @@ -33,10 +33,10 @@ import common default_statetrackers = 'mesa' if common.default_platform in ('linux', 'freebsd', 'darwin'): - default_drivers = 'softpipe,failover,svga,i915,i965,trace,identity,llvmpipe' + default_drivers = 'softpipe,failover,svga,i915,i965,trace,rbug,identity,llvmpipe' default_winsys = 'xlib' elif common.default_platform in ('winddk',): - default_drivers = 'softpipe,svga,i915,i965,trace,identity' + default_drivers = 'softpipe,svga,i915,i965,trace,rbug,identity' default_winsys = 'all' elif common.default_platform in ('embedded',): default_drivers = 'softpipe,llvmpipe' @@ -50,7 +50,7 @@ common.AddOptions(opts) opts.Add(ListVariable('statetrackers', 'state trackers to build', default_statetrackers, ['mesa', 'python', 'xorg'])) opts.Add(ListVariable('drivers', 'pipe drivers to build', default_drivers, - ['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'r300', 'identity', 'llvmpipe', 'nouveau', 'nv50', 'nvfx'])) + ['softpipe', 'failover', 'svga', 'i915', 'i965', 'trace', 'rbug', 'r300', 'identity', 'llvmpipe', 'nouveau', 'nv50', 'nvfx'])) opts.Add(ListVariable('winsys', 'winsys drivers to build', default_winsys, ['xlib', 'vmware', 'i915', 'i965', 'gdi', 'radeon', 'graw-xlib'])) @@ -102,9 +102,11 @@ Export([ ####################################################################### # Environment setup -# Always build trace, identity, softpipe, and llvmpipe (where possible) +# Always build trace, rbug, identity, softpipe, and llvmpipe (where possible) if 'trace' not in env['drivers']: env['drivers'].append('trace') +if 'rbug' not in env['drivers']: + env['drivers'].append('rbug') if 'identity' not in env['drivers']: env['drivers'].append('identity') if 'softpipe' not in env['drivers']: -- cgit v1.2.3