intel: Add missing dependencies on blorp
Various components implicitly depend on blorp, make this explicit. Checked by setting a 'compiler_args' on idep_intel_blorp and verifying it on blorp_priv.h header. Reviewed-by: Dylan Baker <dylan@pnwbakers.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/27643>
This commit is contained in:
@@ -64,7 +64,7 @@ foreach v : ['40', '45', '50', '60', '70', '75', '80']
|
||||
'-DGFX_VERx10=@0@'.format(v),
|
||||
],
|
||||
gnu_symbol_visibility : 'hidden',
|
||||
dependencies : [dep_libdrm, dep_valgrind, idep_genxml, idep_nir_headers, idep_intel_dev],
|
||||
dependencies : [dep_libdrm, dep_valgrind, idep_genxml, idep_nir_headers, idep_intel_dev, idep_intel_blorp],
|
||||
)
|
||||
endforeach
|
||||
|
||||
|
||||
@@ -82,7 +82,8 @@ foreach v : ['80', '90', '110', '120', '125', '200']
|
||||
],
|
||||
gnu_symbol_visibility : 'hidden',
|
||||
dependencies : [dep_libdrm, dep_valgrind, idep_genxml, idep_nir_headers,
|
||||
idep_intel_driver_ds_headers, idep_intel_shaders, ],
|
||||
idep_intel_driver_ds_headers, idep_intel_shaders,
|
||||
idep_intel_blorp],
|
||||
)
|
||||
endforeach
|
||||
|
||||
|
||||
@@ -38,7 +38,7 @@ libintel_driver_ds = static_library(
|
||||
sources : ['intel_driver_ds.cc', intel_tracepoint_files],
|
||||
include_directories : [inc_src, inc_include, inc_intel],
|
||||
link_with : [libintel_perf, libintel_common],
|
||||
dependencies : [libintel_driver_ds_deps, idep_intel_dev],
|
||||
dependencies : [libintel_driver_ds_deps, idep_intel_dev, idep_intel_blorp],
|
||||
gnu_symbol_visibility : 'hidden',
|
||||
)
|
||||
|
||||
|
||||
@@ -130,7 +130,7 @@ foreach _gfx_ver : ['90', '110', '120', '125', '200']
|
||||
dep_libdrm, dep_valgrind, idep_nir_headers, idep_genxml,
|
||||
idep_vulkan_util_headers, idep_vulkan_wsi_headers,
|
||||
idep_vulkan_runtime_headers, idep_intel_driver_ds_headers,
|
||||
idep_grl, idep_intel_shaders,
|
||||
idep_grl, idep_intel_shaders, idep_intel_blorp,
|
||||
],
|
||||
)
|
||||
endforeach
|
||||
@@ -207,6 +207,7 @@ anv_deps = [
|
||||
idep_vulkan_runtime_headers,
|
||||
idep_vulkan_wsi_headers,
|
||||
idep_intel_shaders,
|
||||
idep_intel_blorp,
|
||||
]
|
||||
|
||||
if with_platform_x11
|
||||
|
||||
@@ -94,6 +94,7 @@ foreach g : [['70', ['gfx7_cmd_buffer.c']],
|
||||
dep_libdrm, dep_valgrind, idep_nir_headers, idep_genxml,
|
||||
idep_vulkan_util_headers, idep_vulkan_wsi_headers,
|
||||
idep_vulkan_runtime_headers, idep_intel_driver_ds_headers,
|
||||
idep_intel_blorp,
|
||||
],
|
||||
)
|
||||
endforeach
|
||||
|
||||
Reference in New Issue
Block a user