1# Copyright © 2017-2018 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 22datadir_amdgpu = join_paths(get_option('prefix'), get_option('datadir'), 'libdrm') 23 24libdrm_amdgpu = library( 25 'drm_amdgpu', 26 [ 27 files( 28 'amdgpu_asic_id.c', 'amdgpu_bo.c', 'amdgpu_cs.c', 'amdgpu_device.c', 29 'amdgpu_gpu_info.c', 'amdgpu_vamgr.c', 'amdgpu_vm.c', 'handle_table.c', 30 ), 31 config_file, 32 ], 33 c_args : [ 34 libdrm_c_args, 35 '-DAMDGPU_ASIC_ID_TABLE="@0@"'.format(join_paths(datadir_amdgpu, 'amdgpu.ids')), 36 ], 37 include_directories : [inc_root, inc_drm], 38 link_with : libdrm, 39 dependencies : [dep_pthread_stubs, dep_atomic_ops, dep_rt], 40 version : '1.0.0', 41 install : true, 42) 43 44install_headers('amdgpu.h', subdir : 'libdrm') 45 46pkg.generate( 47 libdrm_amdgpu, 48 name : 'libdrm_amdgpu', 49 subdirs : ['.', 'libdrm'], 50 description : 'Userspace interface to kernel DRM services for amdgpu', 51) 52 53ext_libdrm_amdgpu = declare_dependency( 54 link_with : [libdrm, libdrm_amdgpu], 55 include_directories : [inc_drm, include_directories('.')], 56) 57 58if meson.version().version_compare('>= 0.54.0') 59 meson.override_dependency('libdrm_amdgpu', ext_libdrm_amdgpu) 60endif 61 62test( 63 'amdgpu-symbols-check', 64 symbols_check, 65 args : [ 66 '--lib', libdrm_amdgpu, 67 '--symbols-file', files('amdgpu-symbols.txt'), 68 '--nm', prog_nm.path(), 69 ], 70) 71