diff options
author | Rob Clark <[email protected]> | 2015-04-03 14:01:47 -0400 |
---|---|---|
committer | Rob Clark <[email protected]> | 2015-04-05 09:24:17 -0400 |
commit | 101142c401038684ca971015d7576029b9dc5e63 (patch) | |
tree | ac5c26bcfdc14f5600e2ce7ebb05a662095c6dff /src/gallium/targets/xa/Makefile.am | |
parent | 1c857727a12a45392b609949046b4abb25e3d7da (diff) |
xa: support for drivers which use NIR
We need to pull in libnir.la and it's dependency libglsl_util.la. Also,
_mesa_error_no_memory() must be defined.
Fortunately with libnir.la (vs pulling in all of libglsl.la) we don't
also need libstdc++.
Signed-off-by: Rob Clark <[email protected]>
Diffstat (limited to 'src/gallium/targets/xa/Makefile.am')
-rw-r--r-- | src/gallium/targets/xa/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/targets/xa/Makefile.am b/src/gallium/targets/xa/Makefile.am index a1eae2af13f..8ddb9672bd7 100644 --- a/src/gallium/targets/xa/Makefile.am +++ b/src/gallium/targets/xa/Makefile.am @@ -37,6 +37,8 @@ libxatracker_la_LIBADD = \ $(top_builddir)/src/gallium/state_trackers/xa/libxatracker.la \ $(top_builddir)/src/gallium/auxiliary/libgalliumvl_stub.la \ $(top_builddir)/src/gallium/auxiliary/libgallium.la \ + $(top_builddir)/src/glsl/libnir.la \ + $(top_builddir)/src/libglsl_util.la \ $(top_builddir)/src/util/libmesautil.la \ $(LIBDRM_LIBS) \ $(GALLIUM_COMMON_LIB_DEPS) |