• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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 = shared_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],
40  version : '1.0.0',
41  install : true,
42)
43
44install_headers('amdgpu.h', subdir : 'libdrm')
45
46pkg.generate(
47  name : 'libdrm_amdgpu',
48  libraries : libdrm_amdgpu,
49  subdirs : ['.', 'libdrm'],
50  version : meson.project_version(),
51  requires_private : 'libdrm',
52  description : 'Userspace interface to kernel DRM services for amdgpu',
53)
54
55ext_libdrm_amdgpu = declare_dependency(
56  link_with : [libdrm, libdrm_amdgpu],
57  include_directories : [inc_drm, include_directories('.')],
58)
59
60test(
61  'amdgpu-symbols-check',
62  symbols_check,
63  args : [
64    '--lib', libdrm_amdgpu,
65    '--symbols-file', files('amdgpu-symbols.txt'),
66    '--nm', prog_nm.path(),
67  ],
68)
69