2017-09-13 12:46:13 -06:00
|
|
|
# Copyright © 2017-2018 Intel Corporation
|
|
|
|
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
# The above copyright notice and this permission notice shall be included in
|
|
|
|
# all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
|
|
|
|
2021-03-09 01:14:36 -07:00
|
|
|
libdrm_nouveau = library(
|
2017-09-13 12:46:13 -06:00
|
|
|
'drm_nouveau',
|
|
|
|
[files( 'nouveau.c', 'pushbuf.c', 'bufctx.c', 'abi16.c'), config_file],
|
2018-09-12 14:24:12 -06:00
|
|
|
c_args : libdrm_c_args,
|
2022-01-19 11:42:20 -07:00
|
|
|
gnu_symbol_visibility : 'hidden',
|
2017-09-13 12:46:13 -06:00
|
|
|
include_directories : [inc_root, inc_drm],
|
|
|
|
link_with : libdrm,
|
2018-02-07 07:20:52 -07:00
|
|
|
dependencies : [dep_threads, dep_atomic_ops],
|
2017-09-13 12:46:13 -06:00
|
|
|
version : '2.0.0',
|
|
|
|
install : true,
|
|
|
|
)
|
|
|
|
|
|
|
|
ext_libdrm_nouveau = declare_dependency(
|
|
|
|
link_with : [libdrm, libdrm_nouveau],
|
|
|
|
include_directories : [inc_drm, include_directories('.')],
|
|
|
|
)
|
|
|
|
|
2021-11-17 13:57:54 -07:00
|
|
|
if meson.version().version_compare('>= 0.54.0')
|
|
|
|
meson.override_dependency('libdrm_nouveau', ext_libdrm_nouveau)
|
|
|
|
endif
|
|
|
|
|
2017-09-13 12:46:13 -06:00
|
|
|
install_headers('nouveau.h', subdir : 'libdrm/nouveau')
|
|
|
|
install_headers(
|
|
|
|
'nvif/class.h', 'nvif/cl0080.h', 'nvif/cl9097.h', 'nvif/if0002.h',
|
|
|
|
'nvif/if0003.h', 'nvif/ioctl.h', 'nvif/unpack.h',
|
|
|
|
subdir : 'libdrm/nouveau/nvif'
|
|
|
|
)
|
|
|
|
|
|
|
|
pkg.generate(
|
2022-01-19 12:14:17 -07:00
|
|
|
libdrm_nouveau,
|
2017-09-13 12:46:13 -06:00
|
|
|
name : 'libdrm_nouveau',
|
2018-01-25 16:44:37 -07:00
|
|
|
subdirs : ['.', 'libdrm', 'libdrm/nouveau'],
|
2017-09-13 12:46:13 -06:00
|
|
|
description : 'Userspace interface to nouveau kernel DRM services',
|
|
|
|
)
|
|
|
|
|
|
|
|
test(
|
2019-10-23 16:32:54 -06:00
|
|
|
'nouveau-symbols-check',
|
|
|
|
symbols_check,
|
|
|
|
args : [
|
|
|
|
'--lib', libdrm_nouveau,
|
|
|
|
'--symbols-file', files('nouveau-symbols.txt'),
|
2023-09-01 14:10:41 -06:00
|
|
|
'--nm', prog_nm.full_path(),
|
2019-10-23 16:32:54 -06:00
|
|
|
],
|
2017-09-13 12:46:13 -06:00
|
|
|
)
|