diff options
author | Andreas Boll <[email protected]> | 2013-05-03 11:33:35 +0200 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-05-03 18:44:43 +0200 |
commit | 4ca44f2c5e6b3a0a91626b576d72d306e5c08592 (patch) | |
tree | 3e2b901b0e13a45f2964add9f2e7418cd6144d97 /src/gallium/SConscript | |
parent | 4539f8e20af286d1f521eb016c89c6d9af0b801c (diff) |
scons: remove radeon build
One build system for linux/unix only drivers should be enough.
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=48694
Acked-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/SConscript')
-rw-r--r-- | src/gallium/SConscript | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/src/gallium/SConscript b/src/gallium/SConscript index f281f4c6567..c53cd391b1f 100644 --- a/src/gallium/SConscript +++ b/src/gallium/SConscript @@ -29,15 +29,6 @@ if not env['msvc']: if env['drm']: # These drivers depend on drm headers - if env['drm_radeon']: - SConscript([ - 'drivers/r300/SConscript', - 'drivers/r600/SConscript', - ]) - if env['llvm']: - SConscript([ - 'drivers/radeonsi/SConscript', - ]) # XXX: nouveau drivers have a tight dependency on libdrm, so to enable # we need some version logic before we enable them. Also, ATM there is # no nouveau target in scons @@ -110,11 +101,6 @@ if env['dri']: 'winsys/i915/drm/SConscript', ]) - if env['drm_radeon']: - SConscript([ - 'winsys/radeon/drm/SConscript', - ]) - # # Targets # @@ -152,21 +138,11 @@ if not env['embedded']: SConscript([ 'targets/dri-i915/SConscript', ]) - if env['drm_radeon']: - SConscript([ - 'targets/dri-r300/SConscript', - 'targets/dri-r600/SConscript', - ]) - if env['llvm']: - SConscript([ - 'targets/dri-radeonsi/SConscript', - ]) if env['xorg'] and env['drm']: SConscript([ #'targets/xorg-i915/SConscript', #'targets/xorg-nouveau/SConscript', - #'targets/xorg-radeon/SConscript', ]) |