diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-02-13 09:26:16 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2019-02-14 09:30:44 -0800 |
commit | c19ce6e5e26b44e13376fba1a5ea4fd60ad9dd5b (patch) | |
tree | 28f224eb7ec4eb538e877ffac220a74169e65681 /src/intel | |
parent | eba57c29b09ef8d6770d2ba71d22a3e1cca08146 (diff) | |
download | mesa-c19ce6e5e26b44e13376fba1a5ea4fd60ad9dd5b.tar.gz mesa-c19ce6e5e26b44e13376fba1a5ea4fd60ad9dd5b.tar.bz2 mesa-c19ce6e5e26b44e13376fba1a5ea4fd60ad9dd5b.zip |
meson: Add dependency on genxml to anvil
Currently the Intel "anvil" driver races with the generation of genxml
files, while i965 has an explicit dependency. This patch adds the same
dependency to anvil.
Fixes: d1992255bb29054fa51763376d125183a9f602f
("meson: Add build Intel "anv" vulkan driver")
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
Acked-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
Reviewed-by: Eric Engestrom <eric.engestrom@intel.com>
(cherry picked from commit 279060cd32dd673c6a5bf302ceac852f51a6c17c)
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/vulkan/meson.build | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/intel/vulkan/meson.build b/src/intel/vulkan/meson.build index 05fdeca8c25..ffd1985f251 100644 --- a/src/intel/vulkan/meson.build +++ b/src/intel/vulkan/meson.build @@ -1,4 +1,4 @@ -# Copyright © 2017-2018 Intel Corporation +# Copyright © 2017-2019 Intel Corporation # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -178,7 +178,10 @@ endif libanv_common = static_library( 'anv_common', - [libanv_files, anv_entrypoints, anv_extensions_c, anv_extensions_h, sha1_h], + [ + libanv_files, anv_entrypoints, anv_extensions_c, anv_extensions_h, sha1_h, + gen_xml_pack, + ], include_directories : [ inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util, inc_vulkan_wsi, |