summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan A. Suarez Romero <jasuarez@igalia.com>2019-04-17 09:38:00 +0000
committerJuan A. Suarez Romero <jasuarez@igalia.com>2019-04-17 15:49:55 +0200
commitb74e605cf47fe54c0d2a6df072c1874160cfd9eb (patch)
tree6024ec1e2c3cc072f0b1f69f7c213873ea85c998
parentbaf59e40cd1c3d19b299e5ac6bdf3af9e241c6b2 (diff)
meson: Add dependency on genxml to anvil genfiles
This fixes a race condition where anv_gen_files are executed before genxml files, which causes a build failure v2: add dependency on idep_genxml (Lionel) Fixes: d1992255bb29054fa51763376d125183a9f602f ("meson: Add build Intel "anv" vulkan driver") Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
-rw-r--r--src/intel/vulkan/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel/vulkan/meson.build b/src/intel/vulkan/meson.build
index c32c10c5c72..c12040c84eb 100644
--- a/src/intel/vulkan/meson.build
+++ b/src/intel/vulkan/meson.build
@@ -105,7 +105,7 @@ foreach g : [['70', ['gen7_cmd_buffer.c']], ['75', ['gen7_cmd_buffer.c']],
c_vis_args, no_override_init_args, c_sse2_args,
'-DGEN_VERSIONx10=@0@'.format(_gen),
],
- dependencies : [dep_libdrm, dep_valgrind, idep_nir_headers],
+ dependencies : [dep_libdrm, dep_valgrind, idep_nir_headers, idep_genxml],
)
endforeach