mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2025-01-13 09:50:06 +00:00
Fix vendor table build in BUILD.gn for nonsemantic.vulkan.debuginfo.100 (#4375)
Fixes #4374
This commit is contained in:
parent
3b6abf41cc
commit
d432bebb11
46
BUILD.gn
46
BUILD.gn
@ -224,6 +224,30 @@ template("spvtools_vendor_table") {
|
||||
}
|
||||
}
|
||||
|
||||
template("spvtools_vendor_table_local") {
|
||||
assert(defined(invoker.name), "Need name in $target_name generation.")
|
||||
|
||||
action("spvtools_vendor_tables_" + target_name) {
|
||||
script = "utils/generate_grammar_tables.py"
|
||||
|
||||
name = invoker.name
|
||||
extinst_vendor_grammar =
|
||||
"source/extinst.${name}.grammar.json"
|
||||
extinst_file = "${target_gen_dir}/${name}.insts.inc"
|
||||
|
||||
args = [
|
||||
"--extinst-vendor-grammar",
|
||||
rebase_path(extinst_vendor_grammar, root_build_dir),
|
||||
"--vendor-insts-output",
|
||||
rebase_path(extinst_file, root_build_dir),
|
||||
"--vendor-operand-kind-prefix",
|
||||
invoker.operand_kind_prefix,
|
||||
]
|
||||
inputs = [ extinst_vendor_grammar ]
|
||||
outputs = [ extinst_file ]
|
||||
}
|
||||
}
|
||||
|
||||
action("spvtools_generators_inc") {
|
||||
script = "utils/generate_registry_tables.py"
|
||||
|
||||
@ -305,16 +329,19 @@ spvtools_vendor_tables = [
|
||||
"opencl.debuginfo.100",
|
||||
"CLDEBUG100_",
|
||||
],
|
||||
[
|
||||
"nonsemantic.vulkan.debuginfo.100",
|
||||
"VKDEBUG100_",
|
||||
],
|
||||
[
|
||||
"nonsemantic.clspvreflection",
|
||||
"...nil...",
|
||||
],
|
||||
]
|
||||
|
||||
spvtools_vendor_tables_local = [
|
||||
[
|
||||
"nonsemantic.vulkan.debuginfo.100",
|
||||
"VKDEBUG100_",
|
||||
],
|
||||
]
|
||||
|
||||
foreach(table_def, spvtools_vendor_tables) {
|
||||
spvtools_vendor_table(table_def[0]) {
|
||||
name = table_def[0]
|
||||
@ -322,6 +349,13 @@ foreach(table_def, spvtools_vendor_tables) {
|
||||
}
|
||||
}
|
||||
|
||||
foreach(table_def, spvtools_vendor_tables_local) {
|
||||
spvtools_vendor_table_local(table_def[0]) {
|
||||
name = table_def[0]
|
||||
operand_kind_prefix = table_def[1]
|
||||
}
|
||||
}
|
||||
|
||||
config("spvtools_public_config") {
|
||||
include_dirs = [ "include" ]
|
||||
}
|
||||
@ -373,6 +407,10 @@ static_library("spvtools") {
|
||||
target_name = table_def[0]
|
||||
deps += [ ":spvtools_vendor_tables_$target_name" ]
|
||||
}
|
||||
foreach(table_def, spvtools_vendor_tables_local) {
|
||||
target_name = table_def[0]
|
||||
deps += [ ":spvtools_vendor_tables_$target_name" ]
|
||||
}
|
||||
|
||||
sources = [
|
||||
"source/assembly_grammar.cpp",
|
||||
|
Loading…
Reference in New Issue
Block a user