diff options
author | Timur Kristóf <[email protected]> | 2019-03-14 15:32:37 +0100 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2019-03-29 23:12:40 -0700 |
commit | 356ec7a21960d77db282f67af577dcdb46966b5a (patch) | |
tree | 35f9fa9b344a085444719b5acf491a75cc14f677 /src/gallium/targets/pipe-loader | |
parent | 7dbd934e269e80941b2d73e4b405a151a1145a21 (diff) |
gallium: fix autotools build of pipe_msm.la
Signed-off-by: Vinson Lee <[email protected]>
Fixes: 9a834447d652 ("tgsi_to_nir: Produce optimized NIR for a given pipe_screen.")
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109929
Diffstat (limited to 'src/gallium/targets/pipe-loader')
-rw-r--r-- | src/gallium/targets/pipe-loader/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/gallium/targets/pipe-loader/Makefile.am b/src/gallium/targets/pipe-loader/Makefile.am index db515e3097b..807a100a7d0 100644 --- a/src/gallium/targets/pipe-loader/Makefile.am +++ b/src/gallium/targets/pipe-loader/Makefile.am @@ -53,16 +53,14 @@ endif PIPE_LIBS += \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ - $(top_builddir)/src/compiler/nir/libnir.la \ - $(top_builddir)/src/util/libmesautil.la \ + $(top_builddir)/src/compiler/glsl/libglsl.la \ $(GALLIUM_COMMON_LIB_DEPS) AM_LDFLAGS = \ -module \ -no-undefined \ -avoid-version \ - $(GC_SECTIONS) \ - $(LD_NO_UNDEFINED) + $(GC_SECTIONS) if HAVE_LD_VERSION_SCRIPT AM_LDFLAGS += \ |