meson: drop unused dep_{thread,dl}
Unused as of last commit. Signed-off-by: Eric Engestrom <eric.engestrom@intel.com> Acked-by: Eric Anholt <eric@anholt.net> Tested-by: Vinson Lee <vlee@freedesktop.org>
This commit is contained in:

committed by
Eric Engestrom

parent
d2d85b950d
commit
178811d8f6
@@ -241,7 +241,7 @@ libglsl_standalone = static_library(
|
||||
cpp_args : [cpp_vis_args, cpp_msvc_compat_args],
|
||||
include_directories : [inc_common],
|
||||
link_with : [libglsl, libglsl_util],
|
||||
dependencies : [dep_thread, idep_mesautil],
|
||||
dependencies : idep_mesautil,
|
||||
build_by_default : false,
|
||||
)
|
||||
|
||||
|
@@ -63,7 +63,7 @@ subdir('nir')
|
||||
spirv2nir = executable(
|
||||
'spirv2nir',
|
||||
files('spirv/spirv2nir.c'),
|
||||
dependencies : [dep_m, dep_thread, idep_nir, idep_mesautil],
|
||||
dependencies : [dep_m, idep_nir, idep_mesautil],
|
||||
include_directories : [inc_common, inc_nir, include_directories('spirv')],
|
||||
c_args : [c_vis_args, c_msvc_compat_args, no_override_init_args],
|
||||
build_by_default : with_tools.contains('nir'),
|
||||
|
@@ -254,7 +254,6 @@ ir3_compiler = executable(
|
||||
'ir3/ir3_cmdline.c',
|
||||
include_directories : freedreno_includes,
|
||||
dependencies : [
|
||||
dep_thread,
|
||||
idep_nir,
|
||||
idep_mesautil,
|
||||
],
|
||||
|
@@ -97,7 +97,6 @@ lima_compiler = executable(
|
||||
inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_gallium_drivers, inc_mesa, inc_mapi, inc_compiler,
|
||||
],
|
||||
dependencies : [
|
||||
dep_thread,
|
||||
idep_nir,
|
||||
idep_mesautil,
|
||||
],
|
||||
|
@@ -116,7 +116,7 @@ if with_tests and with_gallium_softpipe and with_llvm
|
||||
executable(
|
||||
t,
|
||||
['@0@.c'.format(t), 'lp_test_main.c'],
|
||||
dependencies : [dep_llvm, dep_dl, dep_thread, dep_clock, idep_mesautil],
|
||||
dependencies : [dep_llvm, dep_dl, dep_clock, idep_mesautil],
|
||||
include_directories : [inc_gallium, inc_gallium_aux, inc_include, inc_src],
|
||||
link_with : [libllvmpipe, libgallium],
|
||||
),
|
||||
|
@@ -157,7 +157,7 @@ if with_tests
|
||||
include_directories('compiler'),
|
||||
],
|
||||
link_with : [libr300, libgallium],
|
||||
dependencies : [dep_m, dep_clock, dep_dl, dep_thread, dep_unwind, idep_mesautil],
|
||||
dependencies : [dep_m, dep_clock, dep_dl, dep_unwind, idep_mesautil],
|
||||
),
|
||||
suite : ['r300'],
|
||||
)
|
||||
|
@@ -25,7 +25,7 @@ libgraw_xlib = shared_library(
|
||||
link_with : [
|
||||
libgraw_util, libgallium, libws_xlib
|
||||
],
|
||||
dependencies : [idep_mesautil, dep_thread, driver_swrast],
|
||||
dependencies : [idep_mesautil, driver_swrast],
|
||||
version : '1.0',
|
||||
)
|
||||
|
||||
|
@@ -45,7 +45,7 @@ libomx_gallium = shared_library(
|
||||
libpipe_loader_static, libws_null, libwsw, libswdri, libswkmsdri,
|
||||
],
|
||||
link_depends : omx_link_depends,
|
||||
dependencies : [dep_thread, idep_mesautil, driver_r600, driver_radeonsi, driver_nouveau],
|
||||
dependencies : [idep_mesautil, driver_r600, driver_radeonsi, driver_nouveau],
|
||||
install : true,
|
||||
install_dir : omx_drivers_path,
|
||||
)
|
||||
|
@@ -42,7 +42,7 @@ libopencl = shared_library(
|
||||
link_with : [libpipe_loader_dynamic, libgallium],
|
||||
dependencies : [
|
||||
idep_mesautil,
|
||||
dep_thread, dep_clock, dep_dl, dep_unwind, dep_elf, dep_expat,
|
||||
dep_clock, dep_dl, dep_unwind, dep_elf,
|
||||
cpp.find_library('clangCodeGen', dirs : llvm_libdir),
|
||||
cpp.find_library('clangFrontendTool', dirs : llvm_libdir),
|
||||
cpp.find_library('clangFrontend', dirs : llvm_libdir),
|
||||
|
@@ -46,7 +46,7 @@ libva_gallium = shared_library(
|
||||
libpipe_loader_static, libws_null, libwsw, libswdri, libswkmsdri,
|
||||
],
|
||||
dependencies : [
|
||||
dep_libdrm, dep_thread, driver_r600, driver_radeonsi, driver_nouveau,
|
||||
dep_libdrm, driver_r600, driver_radeonsi, driver_nouveau,
|
||||
idep_mesautil,
|
||||
],
|
||||
link_depends : va_link_depends,
|
||||
|
@@ -51,7 +51,7 @@ libvdpau_gallium = shared_library(
|
||||
libpipe_loader_static, libws_null, libwsw, libswdri, libswkmsdri,
|
||||
],
|
||||
dependencies : [
|
||||
dep_thread, idep_mesautil,
|
||||
idep_mesautil,
|
||||
driver_r300, driver_r600, driver_radeonsi, driver_nouveau,
|
||||
],
|
||||
link_depends : vdpau_link_depends,
|
||||
|
@@ -48,7 +48,7 @@ libxatracker = shared_library(
|
||||
],
|
||||
link_depends : xa_link_depends,
|
||||
dependencies : [
|
||||
dep_thread, idep_mesautil,
|
||||
idep_mesautil,
|
||||
driver_nouveau, driver_i915, driver_svga, driver_freedreno,
|
||||
],
|
||||
version : _xa_version,
|
||||
|
@@ -45,7 +45,7 @@ libxvmc_gallium = shared_library(
|
||||
libgalliumvlwinsys, libgalliumvl, libgallium,
|
||||
libpipe_loader_static, libws_null, libwsw, libswdri, libswkmsdri,
|
||||
],
|
||||
dependencies : [dep_thread, idep_mesautil, driver_r600, driver_nouveau],
|
||||
dependencies : [idep_mesautil, driver_r600, driver_nouveau],
|
||||
link_depends : xvmc_link_depends,
|
||||
# Will be deleted during installation, see install_megadrivers.py
|
||||
install : true,
|
||||
|
@@ -31,6 +31,6 @@ foreach t : progs
|
||||
t + '.c',
|
||||
include_directories : inc_common,
|
||||
link_with : [libgraw, libgraw_util, libgallium],
|
||||
dependencies : [dep_m, dep_thread, idep_mesautil],
|
||||
dependencies : [dep_m, idep_mesautil],
|
||||
)
|
||||
endforeach
|
||||
|
@@ -24,7 +24,7 @@ foreach t : ['compute', 'tri', 'quad-tex']
|
||||
'@0@.c'.format(t),
|
||||
include_directories : inc_common,
|
||||
link_with : [libgallium, libpipe_loader_dynamic],
|
||||
dependencies : [idep_mesautil, dep_thread],
|
||||
dependencies : idep_mesautil,
|
||||
install : false,
|
||||
)
|
||||
endforeach
|
||||
|
@@ -25,7 +25,7 @@ foreach t : ['pipe_barrier_test', 'u_cache_test', 'u_half_test',
|
||||
'@0@.c'.format(t),
|
||||
include_directories : inc_common,
|
||||
link_with : libgallium,
|
||||
dependencies : [idep_mesautil, dep_thread],
|
||||
dependencies : idep_mesautil,
|
||||
install : false,
|
||||
)
|
||||
# u_cache_test is slow, and translate_test fails.
|
||||
|
@@ -59,7 +59,7 @@ if install_intel_gpu_tests
|
||||
],
|
||||
include_directories : [inc_common, inc_intel],
|
||||
link_with : [libintel_dev],
|
||||
dependencies : [dep_libdrm, dep_thread, idep_gtest, idep_genxml, idep_mesautil],
|
||||
dependencies : [dep_libdrm, idep_gtest, idep_genxml, idep_mesautil],
|
||||
install : install_intel_gpu_tests,
|
||||
)
|
||||
endforeach
|
||||
|
@@ -157,7 +157,7 @@ if with_tests
|
||||
link_with : [
|
||||
libintel_compiler, libintel_common, libintel_dev, libisl,
|
||||
],
|
||||
dependencies : [dep_thread, dep_dl, idep_gtest, idep_nir, idep_mesautil],
|
||||
dependencies : [idep_gtest, idep_nir, idep_mesautil],
|
||||
),
|
||||
suite : ['intel'],
|
||||
)
|
||||
|
@@ -22,7 +22,7 @@ libmesa_st_test_common = static_library(
|
||||
'mesa_st_test_common',
|
||||
['st_tests_common.cpp', ir_expression_operation_h],
|
||||
include_directories : inc_common,
|
||||
dependencies : [dep_thread, idep_gtest],
|
||||
dependencies : idep_gtest,
|
||||
)
|
||||
|
||||
test(
|
||||
@@ -34,7 +34,7 @@ test(
|
||||
link_with : [
|
||||
libmesa_st_test_common, libmesa_gallium, libglapi, libgallium,
|
||||
],
|
||||
dependencies : [dep_thread, idep_mesautil],
|
||||
dependencies : idep_mesautil,
|
||||
),
|
||||
suite : ['st_mesa'],
|
||||
)
|
||||
@@ -48,7 +48,7 @@ test(
|
||||
link_with : [
|
||||
libmesa_st_test_common, libmesa_gallium, libglapi, libgallium,
|
||||
],
|
||||
dependencies : [idep_mesautil, idep_gtest, dep_thread],
|
||||
dependencies : [idep_mesautil, idep_gtest],
|
||||
),
|
||||
suite : ['st_mesa'],
|
||||
)
|
||||
@@ -62,7 +62,7 @@ test(
|
||||
link_with : [
|
||||
libmesa_st_test_common, libmesa_gallium, libglapi, libgallium,
|
||||
],
|
||||
dependencies : [idep_mesautil, idep_gtest, dep_thread],
|
||||
dependencies : [idep_mesautil, idep_gtest],
|
||||
),
|
||||
suite : ['st_mesa'],
|
||||
)
|
||||
|
@@ -48,7 +48,6 @@ pandecode = executable(
|
||||
files_pandecode,
|
||||
include_directories : [inc_common, inc_include, inc_src, inc_panfrost],
|
||||
dependencies : [
|
||||
dep_thread,
|
||||
idep_mesautil,
|
||||
],
|
||||
build_by_default : true
|
||||
@@ -68,7 +67,6 @@ bifrost_compiler = executable(
|
||||
inc_panfrost,
|
||||
],
|
||||
dependencies : [
|
||||
dep_thread,
|
||||
idep_nir,
|
||||
idep_mesautil,
|
||||
],
|
||||
|
@@ -214,7 +214,7 @@ if with_tests
|
||||
'bitset_test',
|
||||
files('bitset_test.cpp'),
|
||||
include_directories : inc_common,
|
||||
dependencies : [idep_mesautil, dep_thread, dep_dl, idep_gtest],
|
||||
dependencies : [idep_mesautil, idep_gtest],
|
||||
),
|
||||
suite : ['util'],
|
||||
)
|
||||
|
@@ -23,7 +23,7 @@ test(
|
||||
executable(
|
||||
'fast_idiv_by_const_test',
|
||||
'fast_idiv_by_const_test.cpp',
|
||||
dependencies : [dep_thread, dep_dl, idep_gtest, idep_mesautil],
|
||||
dependencies : [idep_gtest, idep_mesautil],
|
||||
include_directories : inc_common,
|
||||
),
|
||||
suite : ['util'],
|
||||
|
@@ -24,7 +24,7 @@ test(
|
||||
executable(
|
||||
'fast_urem_by_const_test',
|
||||
'fast_urem_by_const_test.cpp',
|
||||
dependencies : [dep_thread, dep_dl, idep_gtest, idep_mesautil],
|
||||
dependencies : [idep_gtest, idep_mesautil],
|
||||
include_directories : inc_common,
|
||||
),
|
||||
suite : ['util'],
|
||||
|
@@ -28,7 +28,7 @@ foreach t : ['clear', 'collision', 'delete_and_lookup', 'delete_management',
|
||||
'@0@_test'.format(t),
|
||||
files('@0@.c'.format(t)),
|
||||
c_args : [c_msvc_compat_args],
|
||||
dependencies : [dep_thread, dep_dl, idep_mesautil],
|
||||
dependencies : idep_mesautil,
|
||||
include_directories : [inc_include, inc_util],
|
||||
),
|
||||
suite : ['util'],
|
||||
|
@@ -23,7 +23,7 @@ test(
|
||||
executable(
|
||||
'string_buffer_test',
|
||||
'string_buffer_test.cpp',
|
||||
dependencies : [dep_thread, dep_dl, idep_gtest, idep_mesautil],
|
||||
dependencies : [idep_gtest, idep_mesautil],
|
||||
include_directories : inc_common,
|
||||
),
|
||||
suite : ['util'],
|
||||
|
Reference in New Issue
Block a user