1# Copyright © 2017 Broadcom 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 21files_libv3d = files( 22 'v3d_blit.c', 23 'v3d_bufmgr.c', 24 'v3d_bufmgr.h', 25 'v3d_cl.c', 26 'v3d_cl.h', 27 'v3d_context.c', 28 'v3d_context.h', 29 'v3d_disk_cache.c', 30 'v3d_fence.c', 31 'v3d_formats.c', 32 'v3d_job.c', 33 'v3d_program.c', 34 'v3d_query.c', 35 'v3d_query.h', 36 'v3d_query_pipe.c', 37 'v3d_resource.c', 38 'v3d_resource.h', 39 'v3d_screen.c', 40 'v3d_screen.h', 41 'v3d_uniforms.c', 42) 43 44files_per_version = files( 45 'v3dx_draw.c', 46 'v3dx_emit.c', 47 'v3dx_format_table.c', 48 'v3dx_job.c', 49 'v3dx_query_perfcnt.c', 50 'v3dx_rcl.c', 51 'v3dx_state.c', 52 'v3dx_tfu.c', 53) 54 55v3d_args = ['-DV3D_BUILD_NEON'] 56 57dep_v3dv3 = dependency('v3dv3', required: false) 58if dep_v3dv3.found() 59 v3d_args += '-DUSE_V3D_SIMULATOR' 60endif 61 62v3d_versions = ['42', '71'] 63 64per_version_libs = [] 65foreach ver : v3d_versions 66 per_version_libs += static_library( 67 'v3d-v' + ver, 68 [files_per_version, v3d_xml_pack], 69 include_directories : [ 70 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom, 71 inc_gallium_drivers, 72 ], 73 c_args : [v3d_args, '-DV3D_VERSION=' + ver], 74 gnu_symbol_visibility : 'hidden', 75 dependencies : [dep_v3dv3, dep_libdrm, dep_valgrind, idep_nir_headers], 76) 77 78endforeach 79 80libv3d = static_library( 81 'v3d', 82 [ 83 files_libv3d, 84 v3d_xml_pack, 85 ], 86 include_directories : [ 87 inc_src, inc_include, inc_gallium, inc_gallium_aux, inc_broadcom, 88 inc_simulator, inc_gallium_drivers, 89 ], 90 c_args : [v3d_args], 91 cpp_args : [v3d_args], 92 gnu_symbol_visibility : 'hidden', 93 dependencies : [ 94 dep_v3dv3, dep_libdrm, dep_valgrind, 95 idep_nir_headers, idep_mesautil, 96 ], 97 link_with: [per_version_libs], 98) 99 100driver_v3d = declare_dependency( 101 compile_args : '-DGALLIUM_V3D', 102 link_with : [libv3d, libv3dwinsys, libbroadcom_cle, libbroadcom_v3d], 103 dependencies : idep_nir, 104) 105