search for: nv50_c_sources

Displaying 1 result from an estimated 1 matches for "nv50_c_sources".

Did you mean: nv50_crc_sources
2014 Feb 21
0
[PATCH] nouveau: add a nouveau_compiler binary to compile TGSI into shader ISA
...e @@ -0,0 +1 @@ +nouveau_compiler diff --git a/src/gallium/drivers/nouveau/Makefile.am b/src/gallium/drivers/nouveau/Makefile.am index 7c05223..ac4f9bb 100644 --- a/src/gallium/drivers/nouveau/Makefile.am +++ b/src/gallium/drivers/nouveau/Makefile.am @@ -39,3 +39,15 @@ libnouveau_la_SOURCES = \ $(NV50_C_SOURCES) \ $(NVC0_CODEGEN_SOURCES) \ $(NVC0_C_SOURCES) + +noinst_PROGRAMS = nouveau_compiler + +nouveau_compiler_SOURCES = \ + nouveau_compiler.c + +nouveau_compiler_LDADD = \ + libnouveau.la \ + ../../auxiliary/libgallium.la \ + -lstdc++ \ + -lm \ + -ldl diff --git a/src/gallium/drivers/nouveau/nouvea...