-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathx86.build
More file actions
43 lines (41 loc) · 1.11 KB
/
x86.build
File metadata and controls
43 lines (41 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[properties]
#cpp_args = ['-DHAVE_SSE', '-DLV_HAVE_SSE']
#c_args = ['-D_GNU_SOURCE',
# '-DHAVE_SSE',
# '-mfpmath=sse',
# '-mavx2',
# '-DLV_HAVE_AVX2',
# '-DLV_HAVE_AVX',
# '-DLV_HAVE_SSE',
# '-march=native',
# '-std=c99', ]
c_args = ['-D_GNU_SOURCE',
'-DHAVE_MBEDTLS',
'-funroll-loops',
'-fPIC',
'-O3',
'-fno-trapping-math',
'-fno-math-errno',
'-mms-bitfields',
'-march=native',
'-std=c99',
'-mfpmath=sse',
'-mavx',
'-DLV_HAVE_SSE',
'-DLV_HAVE_AVX',
'-DSOAPY_SDR_API_VERSION=0x00080000', # Soapy is currently at 0.8
'-Wno-unused-variable',
'-Wno-comment',
]
[host_machine]
system = 'linux'
cpu_family = 'x86'
cpu = 'x86_64'
endian = 'little'
[binaries]
# Use the system's installed compiler
cpp = 'g++'
c = 'cc'
ar = 'ar'
strip = 'strip'
pkgconfig = 'pkg-config'