scons: fix SPIR-V -> NIR build

Signed-off-by: Rhys Perry <pendingchaos02@gmail.com>
Tested-by: Vinson Lee <vlee@freedesktop.org>
Reviewed-by: Roland Scheidegger <sroland@vmware.com>
Fixes: 18f9fc919e ('spirv: add and use a generator id enum')
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/7096>
This commit is contained in:
Rhys Perry 2020-10-12 14:39:27 +01:00
parent c122315702
commit 044d213086
1 changed files with 7 additions and 0 deletions

View File

@ -39,6 +39,13 @@ env.CodeGenerate(
command = python_cmd + ' $SCRIPT $SOURCE $TARGET'
)
env.CodeGenerate(
target = 'spirv/vtn_generator_ids.h',
script = 'spirv/vtn_generator_ids_h.py',
source = ['spirv/spir-v.xml'],
command = python_cmd + ' $SCRIPT $SOURCE $TARGET'
)
# parse Makefile.sources
source_lists = env.ParseSourceList('Makefile.sources')