aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler
diff options
context:
space:
mode:
authorEric Engestrom <[email protected]>2019-09-25 00:44:21 +0100
committerEric Engestrom <[email protected]>2019-10-07 21:49:40 +0100
commit7a1dc6ab446ed027997acf6fe45e0c599519e320 (patch)
treea1033a5ae77f5eda8f0db80c9fbd30a3e60a598f /src/compiler
parent3e95b2773f9684207ea8eb5cfd1f548dca5d6a10 (diff)
meson: rename libnir to _libnir to make it clear it's not meant to be used anywhere else
Signed-off-by: Eric Engestrom <[email protected]> Reviewed-by: Dylan Baker <[email protected]>
Diffstat (limited to 'src/compiler')
-rw-r--r--src/compiler/nir/meson.build4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/nir/meson.build b/src/compiler/nir/meson.build
index 1da26ef561c..ab4db9a8b0d 100644
--- a/src/compiler/nir/meson.build
+++ b/src/compiler/nir/meson.build
@@ -238,7 +238,7 @@ files_libnir = files(
'../spirv/vtn_variables.c',
)
-libnir = static_library(
+_libnir = static_library(
'nir',
[files_libnir, spirv_info_c, nir_opt_algebraic_c, nir_opcodes_c,
nir_opcodes_h, nir_constant_expressions_c, nir_builder_opcodes_h,
@@ -258,7 +258,7 @@ idep_nir_headers = declare_dependency(
# Also link with nir
idep_nir = declare_dependency(
dependencies : idep_nir_headers,
- link_with : libnir,
+ link_with : _libnir,
)
nir_algebraic_py = files('nir_algebraic.py')