diff options
author | Emil Velikov <[email protected]> | 2016-05-16 18:55:08 +0100 |
---|---|---|
committer | Rob Clark <[email protected]> | 2016-05-17 14:22:46 -0400 |
commit | 52addd90d1406f9b156a384fe8b98dee27aeddf6 (patch) | |
tree | 8849803a15b2839df0b74d2212bff4390f6cb095 /src/gallium/targets/libgl-gdi | |
parent | 265487aedfabbcfb073f9d6053d1ceb510b78b27 (diff) |
scons: gallium: link against nir as needed
... otherwise we'll produce uncomplete binaries with introduction of NIR
as alternative IR with next commits.
Signed-off-by: Emil Velikov <[email protected]>
Acked-by: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium/targets/libgl-gdi')
-rw-r--r-- | src/gallium/targets/libgl-gdi/SConscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/targets/libgl-gdi/SConscript b/src/gallium/targets/libgl-gdi/SConscript index 3a63e3e6a3e..53284e57edb 100644 --- a/src/gallium/targets/libgl-gdi/SConscript +++ b/src/gallium/targets/libgl-gdi/SConscript @@ -50,7 +50,7 @@ if env['gles']: opengl32 = env.SharedLibrary( target ='opengl32', source = sources, - LIBS = wgl + ws_gdi + glapi + compiler + mesa + drivers + gallium + glsl + env['LIBS'], + LIBS = wgl + ws_gdi + glapi + compiler + mesa + drivers + gallium + glsl + nir + env['LIBS'], ) env.Alias('opengl32', opengl32) |