i965/tiled_memcpy: avoid creating bswap32 if it exists as a macro (e.g. on FreeBSD)
[mesa.git] / src / intel / isl / meson.build
1 # Copyright © 2017 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 isl_gen_files = files(
22 'isl_emit_depth_stencil.c',
23 'isl_surface_state.c',
24 )
25
26 isl_gen4_files = files(
27 'isl_gen4.c',
28 'isl_gen4.h',
29 )
30
31 isl_gen6_files = files(
32 'isl_gen6.c',
33 'isl_gen6.h',
34 )
35
36 isl_gen7_files = files(
37 'isl_gen7.c',
38 'isl_gen7.h',
39 )
40
41 isl_gen8_files = files(
42 'isl_gen8.c',
43 'isl_gen8.h',
44 )
45
46 isl_gen9_files = files(
47 'isl_gen9.c',
48 'isl_gen9.h',
49 )
50
51 isl_gen_libs = []
52 foreach g : [['40', isl_gen4_files], ['50', []], ['60', isl_gen6_files],
53 ['70', isl_gen7_files], ['75', []], ['80', isl_gen8_files],
54 ['90', isl_gen9_files], ['100', []], ['110', []]]
55 _gen = g[0]
56 isl_gen_libs += static_library(
57 'isl_gen@0@'.format(_gen),
58 [g[1], isl_gen_files, gen_xml_pack],
59 include_directories : [inc_common, inc_intel],
60 c_args : [c_vis_args, no_override_init_args,
61 '-DGEN_VERSIONx10=@0@'.format(_gen)],
62 )
63 endforeach
64
65 isl_format_layout_c = custom_target(
66 'isl_format_layout.c',
67 input : ['gen_format_layout.py', 'isl_format_layout.csv'],
68 output : 'isl_format_layout.c',
69 command : [prog_python, '@INPUT0@', '--csv', '@INPUT1@', '--out', '@OUTPUT@'],
70 )
71
72 files_isl_tiled_memcpy = files(
73 'isl_tiled_memcpy_normal.c'
74 )
75
76 files_isl_tiled_memcpy_sse41 = files(
77 'isl_tiled_memcpy_sse41.c',
78 )
79
80 isl_tiled_memcpy = static_library(
81 'isl_tiled_memcpy',
82 [files_isl_tiled_memcpy],
83 include_directories : [
84 inc_common, inc_intel, inc_include,
85 ],
86 c_args : [c_vis_args, no_override_init_args, '-msse2'],
87 extra_files : ['isl_tiled_memcpy.c']
88 )
89
90 if with_sse41
91 isl_tiled_memcpy_sse41 = static_library(
92 'isl_tiled_memcpy_sse41',
93 [files_isl_tiled_memcpy_sse41],
94 include_directories : [
95 inc_common, inc_intel, inc_include,
96 ],
97 link_args : ['-Wl,--exclude-libs=ALL'],
98 c_args : [c_vis_args, no_override_init_args, '-msse2', sse41_args],
99 extra_files : ['isl_tiled_memcpy.c']
100 )
101 else
102 isl_tiled_memcpy_sse41 = []
103 endif
104
105 libisl_files = files(
106 'isl.c',
107 'isl.h',
108 'isl_drm.c',
109 'isl_genX_priv.h',
110 'isl_format.c',
111 'isl_priv.h',
112 'isl_storage_image.c',
113 )
114
115 libisl = static_library(
116 'isl',
117 [libisl_files, isl_format_layout_c, genX_bits_h],
118 include_directories : [inc_common, inc_intel, inc_include],
119 link_with : [isl_gen_libs, isl_tiled_memcpy, isl_tiled_memcpy_sse41],
120 c_args : [c_vis_args, no_override_init_args],
121 )
122
123 if with_tests
124 test(
125 'isl_surf_get_image_offset',
126 executable(
127 'isl_surf_get_image_offset_test',
128 'tests/isl_surf_get_image_offset_test.c',
129 dependencies : [dep_m, idep_mesautil],
130 include_directories : [inc_common, inc_intel],
131 link_with : [libisl, libintel_dev],
132 ),
133 suite : ['intel'],
134 )
135 endif