anv/meson: Simplify some dependency and flag tracking
[mesa.git] / src / intel / vulkan / meson.build
1 # Copyright © 2017 Intel Corporation
2
3 # Permission is hereby granted, free of charge, to any person obtaining a copy
4 # of this software and associated documentation files (the "Software"), to deal
5 # in the Software without restriction, including without limitation the rights
6 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 # copies of the Software, and to permit persons to whom the Software is
8 # furnished to do so, subject to the following conditions:
9
10 # The above copyright notice and this permission notice shall be included in
11 # all copies or substantial portions of the Software.
12
13 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
19 # SOFTWARE.
20
21 anv_entrypoints = custom_target(
22 'anv_entrypoints.[ch]',
23 input : ['anv_entrypoints_gen.py', vk_api_xml, vk_android_native_buffer_xml,
24 'anv_extensions.py'],
25 output : ['anv_entrypoints.h', 'anv_entrypoints.c'],
26 command : [
27 prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--xml', '@INPUT2@',
28 '--outdir', meson.current_build_dir(),
29 ],
30 depend_files : files('anv_extensions.py'),
31 )
32
33 anv_extensions_c = custom_target(
34 'anv_extensions.c',
35 input : ['anv_extensions_gen.py', vk_api_xml, vk_android_native_buffer_xml,
36 'anv_extensions.py'],
37 output : 'anv_extensions.c',
38 command : [
39 prog_python2, '@INPUT0@', '--xml', '@INPUT1@', '--xml', '@INPUT2@',
40 '--out', '@OUTPUT@',
41 ],
42 )
43
44 intel_icd = custom_target(
45 'intel_icd',
46 input : 'anv_icd.py',
47 output : 'intel_icd.@0@.json'.format(host_machine.cpu()),
48 command : [
49 prog_python2, '@INPUT@',
50 '--lib-path', join_paths(get_option('prefix'), get_option('libdir')),
51 '--out', '@OUTPUT@',
52 ],
53 depend_files : files('anv_extensions.py'),
54 build_by_default : true,
55 install_dir : with_vulkan_icd_dir,
56 install : true,
57 )
58
59 dev_icd = custom_target(
60 'dev_icd',
61 input : 'anv_icd.py',
62 output : 'dev_icd.@0@.json'.format(host_machine.cpu()),
63 command : [
64 prog_python2, '@INPUT@', '--lib-path', meson.current_build_dir(),
65 '--out', '@OUTPUT@'
66 ],
67 depend_files : files('anv_extensions.py'),
68 build_by_default : true,
69 install : false,
70 )
71
72 # TODO: workaround for anv_entrypoints combining the .h and .c files in it's
73 # output. See issue #2346
74 block_entrypoints = custom_target(
75 'block_entrypoints',
76 command : [prog_touch, '@OUTPUT@'],
77 output : 'null',
78 depends : anv_entrypoints,
79 )
80
81 libanv_gen_libs = []
82 anv_gen_files = files(
83 'genX_blorp_exec.c',
84 'genX_cmd_buffer.c',
85 'genX_gpu_memcpy.c',
86 'genX_pipeline.c',
87 'genX_query.c',
88 'genX_state.c',
89 )
90 foreach g : [['70', ['gen7_cmd_buffer.c']], ['75', ['gen7_cmd_buffer.c']],
91 ['80', ['gen8_cmd_buffer.c']], ['90', ['gen8_cmd_buffer.c']],
92 ['100', ['gen8_cmd_buffer.c']]]
93 _gen = g[0]
94 libanv_gen_libs += static_library(
95 'libanv_gen@0@'.format(_gen),
96 [anv_gen_files, g[1], block_entrypoints],
97 include_directories : [
98 inc_common, inc_compiler, inc_drm_uapi, inc_intel, inc_vulkan_util,
99 inc_vulkan_wsi,
100 ],
101 c_args : [
102 c_vis_args, no_override_init_args, '-msse2',
103 '-DGEN_VERSIONx10=@0@'.format(_gen),
104 ],
105 dependencies : [dep_libdrm, dep_valgrind, idep_nir_headers],
106 )
107 endforeach
108
109 libanv_files = files(
110 'anv_allocator.c',
111 'anv_batch_chain.c',
112 'anv_blorp.c',
113 'anv_cmd_buffer.c',
114 'anv_descriptor_set.c',
115 'anv_device.c',
116 'anv_dump.c',
117 'anv_formats.c',
118 'anv_genX.h',
119 'anv_image.c',
120 'anv_intel.c',
121 'anv_nir.h',
122 'anv_nir_apply_pipeline_layout.c',
123 'anv_nir_lower_input_attachments.c',
124 'anv_nir_lower_multiview.c',
125 'anv_nir_lower_push_constants.c',
126 'anv_nir_lower_ycbcr_textures.c',
127 'anv_pass.c',
128 'anv_pipeline.c',
129 'anv_pipeline_cache.c',
130 'anv_private.h',
131 'anv_queue.c',
132 'anv_util.c',
133 'anv_wsi.c',
134 'vk_format_info.h',
135 )
136
137 anv_deps = [
138 dep_libdrm,
139 dep_valgrind,
140 idep_nir_headers,
141 ]
142 anv_flags = [
143 c_vis_args,
144 no_override_init_args,
145 '-msse2',
146 ]
147
148 if with_platform_x11
149 anv_deps += dep_xcb_dri3
150 anv_flags += [
151 '-DVK_USE_PLATFORM_XCB_KHR',
152 '-DVK_USE_PLATFORM_XLIB_KHR',
153 ]
154 libanv_files += files('anv_wsi_x11.c')
155 endif
156
157 if with_platform_wayland
158 anv_deps += dep_wayland_client
159 anv_flags += '-DVK_USE_PLATFORM_WAYLAND_KHR'
160 libanv_files += files('anv_wsi_wayland.c')
161 endif
162
163 libanv_common = static_library(
164 'anv_common',
165 [libanv_files, anv_entrypoints, anv_extensions_c],
166 include_directories : [
167 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
168 inc_vulkan_wsi,
169 ],
170 c_args : anv_flags,
171 dependencies : anv_deps,
172 )
173
174 libvulkan_intel = shared_library(
175 'vulkan_intel',
176 [files('anv_gem.c'), block_entrypoints],
177 include_directories : [
178 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
179 inc_vulkan_wsi,
180 ],
181 link_whole : [libanv_common, libanv_gen_libs],
182 link_with : [
183 libintel_compiler, libintel_common, libisl, libblorp, libvulkan_util,
184 libvulkan_wsi, libmesa_util,
185 ],
186 dependencies : [
187 dep_thread, dep_dl, dep_m, anv_deps, idep_nir,
188 ],
189 c_args : anv_flags,
190 link_args : ['-Wl,--build-id=sha1', ld_args_bsymbolic, ld_args_gc_sections],
191 install : true,
192 )
193
194 if with_tests
195 libvulkan_intel_test = static_library(
196 'vulkan_intel_test',
197 [files('anv_gem_stubs.c'), block_entrypoints],
198 include_directories : [
199 inc_common, inc_intel, inc_compiler, inc_drm_uapi, inc_vulkan_util,
200 inc_vulkan_wsi,
201 ],
202 link_whole : libanv_common,
203 link_with : [
204 libanv_gen_libs, libintel_compiler, libintel_common, libisl, libblorp,
205 libvulkan_util, libvulkan_wsi, libmesa_util,
206 ],
207 dependencies : [
208 dep_thread, dep_dl, dep_m, anv_deps, idep_nir,
209 ],
210 c_args : anv_flags,
211 )
212
213 foreach t : ['block_pool_no_free', 'state_pool_no_free',
214 'state_pool_free_list_only', 'state_pool']
215 test(
216 'anv_@0@'.format(t),
217 executable(
218 t,
219 ['tests/@0@.c'.format(t), dummy_cpp, block_entrypoints],
220 link_with : libvulkan_intel_test,
221 dependencies : [dep_libdrm, dep_thread, dep_m, dep_valgrind],
222 include_directories : [
223 inc_common, inc_intel, inc_compiler, inc_vulkan_util, inc_vulkan_wsi,
224 ],
225 )
226 )
227 endforeach
228 endif