OSDN Git Service

meson: add missing HAVE_RADEON
[android-x86/external-libdrm.git] / meson.build
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 project(
22   'libdrm',
23   ['c'],
24   version : '2.4.89',
25   license : 'MIT',
26   meson_version : '>= 0.43',
27   default_options : ['buildtype=debugoptimized', 'c_std=gnu99'],
28 )
29
30 pkg = import('pkgconfig')
31
32 with_udev = get_option('udev')
33 with_freedreno_kgsl = get_option('freedreno-kgsl')
34 with_install_tests = get_option('install-test-programs')
35 with_cairo_tests = get_option('cairo-tests')
36 with_valgrind = get_option('valgrind')
37
38 config = configuration_data()
39
40 # TODO: openbsd is guess, the others are correct
41 if ['freebsd', 'dragonfly', 'netbsd', 'openbsd'].contains(host_machine.system())
42   dep_pthread_stubs = dependency('pthread-stubs', version : '>= 0.4')
43 else
44   dep_pthread_stubs = []
45 endif
46 dep_threads = dependency('threads')
47
48 cc = meson.get_compiler('c')
49
50 # Check for atomics
51 intel_atomics = false
52 lib_atomics = false
53
54 if cc.compiles('''
55     int atomic_add(int *i) { return __sync_add_and_fetch (i, 1); }
56     int atomic_cmpxchg(int *i, int j, int k) { return __sync_val_compare_and_swap (i, j, k); }
57     ''',
58     name : 'Intel Atomics')
59   intel_atomics = true
60   with_atomics = true
61 elif cc.has_header('atomic_ops.h')
62   lib_atomics = true
63   with_atomics = true
64 elif cc.has_function('atomic_cas_uint')
65   with_atomics = true
66 else
67   with_atomics = false
68 endif
69
70 config.set10('HAVE_LIBDRM_ATOMIC_PRIMITIVES', intel_atomics)
71 config.set10('HAVE_LIB_ATOMIC_OPS', lib_atomics)
72
73 with_intel = false
74 _intel = get_option('intel')
75 if _intel != 'false'
76   if _intel == 'true' and not with_atomics
77     error('libdrm_intel requires atomics.')
78   else
79     with_intel = _intel == 'true' or host_machine.cpu_family().startswith('x86')
80   endif
81 endif
82
83 with_radeon = false
84 _radeon = get_option('radeon')
85 if _radeon != 'false'
86   if _radeon == 'true' and not with_atomics
87     error('libdrm_radeon requires atomics.')
88   endif
89   with_radeon = true
90 endif
91
92 with_amdgpu = false
93 _amdgpu = get_option('amdgpu')
94 if _amdgpu != 'false'
95   if _amdgpu == 'true' and not with_atomics
96     error('libdrm_amdgpu requires atomics.')
97   endif
98   with_amdgpu = true
99 endif
100
101 with_nouveau = false
102 _nouveau = get_option('nouveau')
103 if _nouveau != 'false'
104   if _nouveau == 'true' and not with_atomics
105     error('libdrm_nouveau requires atomics.')
106   endif
107   with_nouveau = true
108 endif
109
110 with_vmwgfx = false
111 _vmwgfx = get_option('vmwgfx')
112 if _vmwgfx != 'false'
113   with_vmwgfx = true
114 endif
115
116 with_omap = false
117 _omap = get_option('omap')
118 if _omap == 'true'
119   if not with_atomics
120     error('libdrm_omap requires atomics.')
121   endif
122   with_omap = true
123 endif
124
125 with_freedreno = false
126 _freedreno = get_option('freedreno')
127 if _freedreno != 'false'
128   if _freedreno == 'true' and not with_atomics
129     error('libdrm_freedreno requires atomics.')
130   else
131     with_freedreno = _freedreno == 'true' or ['arm', 'aarch64'].contains(host_machine.cpu_family())
132   endif
133 endif
134
135 with_tegra = false
136 _tegra = get_option('tegra')
137 if _tegra == 'true'
138   if not with_atomics
139     error('libdrm_tegra requires atomics.')
140   endif
141   with_tegra = true
142 endif
143
144 with_etnaviv = false
145 _etnaviv = get_option('etnaviv')
146 if _etnaviv == 'true'
147   if not with_atomics
148     error('libdrm_etnaviv requires atomics.')
149   endif
150   with_etnaviv = true
151 endif
152
153 with_exynos = get_option('exynos') == 'true'
154
155 with_vc4 = false
156 _vc4 = get_option('vc4')
157 if _vc4 != 'false'
158   with_vc4 = _vc4 == 'true' or ['arm', 'aarch64'].contains(host_machine.cpu_family())
159 endif
160
161 # XXX: Aparently only freebsd and dragonfly bsd actually need this (and
162 # gnu/kfreebsd), not openbsd and netbsd
163 with_libkms = false
164 _libkms = get_option('libkms')
165 if _libkms != 'false'
166   with_libkms = _libkms == 'true' or ['linux', 'freebsd', 'dragonfly'].contains(host_machine.system())
167 endif
168
169 if with_udev
170   dep_udev = dependency('udev')
171   config.set10('UDEV', true)
172 else
173   dep_udev = []
174 endif
175
176 # Among others FreeBSD does not have a separate dl library.
177 if not cc.has_function('dlsym')
178   dep_dl = cc.find_library('dl', required : with_nouveau)
179 else
180   dep_dl = []
181 endif
182 # clock_gettime might require -rt, or it might not. find out
183 if not cc.has_function('clock_gettime', prefix : '#define _GNU_SOURCE\n#include <time.h>')
184   # XXX: untested
185   dep_rt = cc.find_library('rt')
186 else
187   dep_rt = []
188 endif
189 dep_m = cc.find_library('m', required : false)
190 if cc.has_header('sys/sysctl.h')
191   config.set10('HAVE_SYS_SYSCTL_H', true)
192 endif
193 if cc.has_header('sys/select.h')
194   config.set10('HAVE_SYS_SELECT_H', true)
195 endif
196 if cc.has_header_symbol('sys/sysmacros.h', 'major')
197   config.set10('MAJOR_IN_SYSMACROS', true)
198 elif cc.has_header_symbol('sys/mkdev.h', 'major')
199   config.set10('MAJOR_IN_MKDEV', true)
200 endif
201 if cc.has_function('open_memstream')
202   config.set10('HAVE_OPEN_MEMSTREAM', true)
203 endif
204
205 warn_c_args = []
206 foreach a : ['-Wall', '-Wextra', '-Wsign-compare', 
207              '-Werror-implicit-function-declaration', '-Wpointer-arith',
208              '-Wwrite-strings', '-Wstrict-prototypes', '-Wmissing-prototypes',
209              '-Wmissing-declarations', '-Wnested-externs', '-Wpacked',
210              '-Wswitch-enum', '-Wmissing-format-attribute', 
211              '-Wstrict-aliasing=2', '-Winit-self', '-Winline', '-Wshadow', 
212              '-Wdeclaration-after-statement', '-Wold-style-definition']
213   if cc.has_argument(a)
214     warn_c_args += a
215   endif
216 endforeach
217 # GCC will never error for -Wno-*, so check for -W* then add -Wno-* to the list
218 # of options
219 foreach a : ['unused-parameter', 'attributes', 'long-long', 
220              'missing-field-initializers']
221   if cc.has_argument('-W@0@'.format(a))
222     warn_c_args += '-Wno-@0@'.format(a)
223   endif
224 endforeach
225
226
227 dep_pciaccess = dependency('pciaccess', version : '>= 0.10', required : with_intel)
228 dep_cunit = dependency('cunit', version : '>= 2.1', required : false)
229 dep_cairo = dependency('cairo', required : with_cairo_tests == 'true')
230 dep_valgrind = dependency('valgrind', required : with_valgrind == 'true')
231
232 with_man_pages = get_option('man-pages')
233 prog_xslt = find_program('xsltproc', required : with_man_pages == 'true')
234 prog_sed = find_program('sed', required : with_man_pages == 'true')
235 manpage_style = 'http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl'
236 if prog_xslt.found()
237   if run_command(prog_xslt, '--nonet', manpage_style).returncode() != 0
238     if with_man_pages == 'true'
239       error('Manpage style sheet cannot be found')
240     endif
241     with_man_pages = 'false'
242   endif
243 endif
244 with_man_pages = with_man_pages != 'false' and prog_xslt.found() and prog_sed.found()
245
246 # Used for tets
247 prog_bash = find_program('bash')
248
249 if cc.compiles('''int foo_hidden(void) __attribute__((visibility(("hidden"))));''',
250                name : 'compiler supports __attribute__(("hidden"))')
251   config.set10('HAVE_VISIBILITY', true)
252 endif
253
254 foreach t : [[with_intel, 'INTEL'], [with_vmwgfx, 'VMWGFX'],
255              [with_nouveau, 'NOUVEAU'], [with_omap, 'OMAP'],
256              [with_exynos, 'EXYNOS'], [with_freedreno, 'FREEDRENO'],
257              [with_tegra, 'TEGRA'], [with_vc4, 'VC4'],
258              [with_etnaviv, 'ETNAVIV'], [with_radeon, 'RADEON']]
259   if t[0]
260     config.set10('HAVE_@0@'.format(t[1]), true)
261   endif
262 endforeach
263 if with_freedreno_kgsl
264   if not with_freedreno
265     error('cannot enable freedreno-kgsl without freedreno support')
266   endif
267   config.set10('HAVE_FREEDRENO_KGSL', true)
268 endif
269 if dep_cairo.found()
270   config.set10('HAVE_CAIRO', true)
271 endif
272 if dep_valgrind.found()
273   config.set10('HAVE_VALGRIND', true)
274 endif
275
276 config.set10('_GNU_SOURCE', true)
277 config_file = configure_file(
278   configuration : config,
279   output : 'config.h',
280 )
281 add_project_arguments('-DHAVE_CONFIG_H', language : 'c')
282
283 inc_root = include_directories('.')
284 inc_drm = include_directories('include/drm')
285
286 libdrm = shared_library(
287   'drm',
288   [files(
289      'xf86drm.c', 'xf86drmHash.c', 'xf86drmRandom.c', 'xf86drmSL.c',
290      'xf86drmMode.c'
291    ),
292    config_file,
293   ],
294   c_args : warn_c_args,
295   dependencies : [dep_udev, dep_valgrind, dep_rt, dep_m],
296   include_directories : inc_drm,
297   version : '2.4.0',
298   install : true,
299 )
300
301 ext_libdrm = declare_dependency(
302   link_with : libdrm,
303   include_directories : inc_drm,
304 )
305
306 install_headers('libsync.h', 'xf86drm.h', 'xf86drmMode.h')
307 install_headers(
308   'include/drm/drm.h', 'include/drm/drm_fourcc.h', 'include/drm/drm_mode.h',
309   'include/drm/drm_sarea.h', 'include/drm/i915_drm.h',
310   'include/drm/mach64_drm.h', 'include/drm/mga_drm.h',
311   'include/drm/nouveau_drm.h', 'include/drm/qxl_drm.h',
312   'include/drm/r128_drm.h', 'include/drm/radeon_drm.h',
313   'include/drm/amdgpu_drm.h', 'include/drm/savage_drm.h',
314   'include/drm/sis_drm.h', 'include/drm/tegra_drm.h', 'include/drm/vc4_drm.h',
315   'include/drm/via_drm.h', 'include/drm/virtgpu_drm.h',
316   subdir : 'libdrm',
317 )
318 if with_vmwgfx
319   install_headers('include/drm/vmwgfx_drm.h', subdir : 'libdrm')
320 endif
321
322 pkg.generate(
323   name : 'libdrm',
324   libraries : libdrm,
325   subdirs : ['.', 'libdrm'],
326   version : meson.project_version(),
327   description : 'Userspace interface to kernel DRM services',
328 )
329  
330 if with_libkms
331   subdir('libkms')
332 endif
333 if with_intel
334   subdir('intel')
335 endif
336 if with_nouveau
337   subdir('nouveau')
338 endif
339 if with_radeon
340   subdir('radeon')
341 endif
342 if with_amdgpu
343   subdir('amdgpu')
344 endif
345 if with_omap
346   subdir('omap')
347 endif
348 if with_exynos
349   subdir('exynos')
350 endif
351 if with_freedreno
352   subdir('freedreno')
353 endif
354 if with_tegra
355   subdir('tegra')
356 endif
357 if with_vc4
358   subdir('vc4')
359 endif
360 if with_etnaviv
361   subdir('etnaviv')
362 endif
363 if with_man_pages
364   subdir('man')
365 endif
366 subdir('data')
367 subdir('tests')