v3d_xml_pack = []
foreach f : v3d_xml_files
_name = '@0@_pack.h'.format(f.split('.')[0])
- _xml = custom_target(
+ v3d_xml_pack += custom_target(
_name,
input : ['gen_pack_header.py', f],
output : _name,
command : [prog_python2, '@INPUT@'],
capture : true,
)
- v3d_xml_pack += _xml
endforeach
libbroadcom_cle = static_library(
gen_xml_pack = []
foreach f : gen_xml_files
_name = '@0@_pack.h'.format(f.split('.')[0])
- _xml = custom_target(
+ gen_xml_pack += custom_target(
_name,
input : ['gen_pack_header.py', f],
output : _name,
command : [prog_python2, '@INPUT@'],
capture : true,
)
- gen_xml_pack += _xml
endforeach
['70', isl_gen7_files], ['75', []], ['80', isl_gen8_files],
['90', isl_gen9_files], ['100', []]]
_gen = g[0]
- _sources = g[1]
- _lib = static_library(
+ isl_gen_libs += static_library(
'libisl_gen@0@'.format(_gen),
- [_sources, isl_gen_files, gen_xml_pack],
+ [g[1], isl_gen_files, gen_xml_pack],
include_directories : [inc_common, inc_intel],
c_args : [c_vis_args, no_override_init_args,
'-DGEN_VERSIONx10=@0@'.format(_gen)],
)
- isl_gen_libs += _lib
endforeach
isl_format_layout_c = custom_target(
['80', ['gen8_cmd_buffer.c']], ['90', ['gen8_cmd_buffer.c']],
['100', ['gen8_cmd_buffer.c']]]
_gen = g[0]
- _files = g[1]
- _lib = static_library(
+ libanv_gen_libs += static_library(
'libanv_gen@0@'.format(_gen),
- [anv_gen_files, _files, block_entrypoints],
+ [anv_gen_files, g[1], block_entrypoints],
include_directories : [
inc_common, inc_compiler, inc_drm_uapi, inc_intel, inc_vulkan_util,
inc_vulkan_wsi,
],
dependencies : [dep_libdrm, dep_valgrind],
)
- libanv_gen_libs += _lib
endforeach
libanv_files = files(
i965_gen_libs = []
foreach v : ['40', '45', '50', '60', '70', '75', '80', '90', '100']
- _lib = static_library(
+ i965_gen_libs += static_library(
'libi965_gen@0@'.format(v),
['genX_blorp_exec.c', 'genX_state_upload.c', nir_opcodes_h, gen_xml_pack],
include_directories : [inc_common, inc_intel, inc_dri_common],
],
dependencies : [dep_libdrm],
)
- i965_gen_libs += _lib
endforeach
oa_generator = generator(