build: fix crash by disabling AVX512 with binutils 2.31
[dpdk.git] / config / x86 / meson.build
1 # SPDX-License-Identifier: BSD-3-Clause
2 # Copyright(c) 2017-2019 Intel Corporation
3
4 # get binutils version for the workaround of Bug 97
5 if not is_windows
6         ldver = run_command('ld', '-v').stdout().strip()
7         if ldver.contains('2.30')
8                 if cc.has_argument('-mno-avx512f')
9                         machine_args += '-mno-avx512f'
10                         message('Binutils 2.30 detected, disabling AVX512 support as workaround for bug #97')
11                 endif
12         endif
13         if ldver.contains('2.31') and cc.has_argument('-mno-avx512f')
14                 machine_args += '-mno-avx512f'
15                 message('Binutils 2.31 detected, disabling AVX512 support as workaround for bug #249')
16         endif
17 endif
18
19 # we require SSE4.2 for DPDK
20 sse_errormsg = '''SSE4.2 instruction set is required for DPDK.
21 Please set the machine type to "nehalem" or "corei7" or higher value'''
22
23 if cc.get_define('__SSE4_2__', args: machine_args) == ''
24         error(sse_errormsg)
25 endif
26
27 base_flags = ['SSE', 'SSE2', 'SSE3','SSSE3', 'SSE4_1', 'SSE4_2']
28 foreach f:base_flags
29         dpdk_conf.set('RTE_MACHINE_CPUFLAG_' + f, 1)
30         compile_time_cpuflags += ['RTE_CPUFLAG_' + f]
31 endforeach
32
33 dpdk_conf.set('RTE_ARCH_X86', 1)
34 if dpdk_conf.get('RTE_ARCH_64')
35         dpdk_conf.set('RTE_ARCH_X86_64', 1)
36         dpdk_conf.set('RTE_ARCH', 'x86_64')
37 else
38         dpdk_conf.set('RTE_ARCH_I686', 1)
39         dpdk_conf.set('RTE_ARCH', 'i686')
40 endif
41
42 if cc.get_define('__AES__', args: machine_args) != ''
43         dpdk_conf.set('RTE_MACHINE_CPUFLAG_AES', 1)
44         compile_time_cpuflags += ['RTE_CPUFLAG_AES']
45 endif
46 if cc.get_define('__PCLMUL__', args: machine_args) != ''
47         dpdk_conf.set('RTE_MACHINE_CPUFLAG_PCLMULQDQ', 1)
48         compile_time_cpuflags += ['RTE_CPUFLAG_PCLMULQDQ']
49 endif
50 if cc.get_define('__AVX__', args: machine_args) != ''
51         dpdk_conf.set('RTE_MACHINE_CPUFLAG_AVX', 1)
52         compile_time_cpuflags += ['RTE_CPUFLAG_AVX']
53 endif
54 if cc.get_define('__AVX2__', args: machine_args) != ''
55         dpdk_conf.set('RTE_MACHINE_CPUFLAG_AVX2', 1)
56         compile_time_cpuflags += ['RTE_CPUFLAG_AVX2']
57 endif
58 if cc.get_define('__AVX512F__', args: machine_args) != ''
59         dpdk_conf.set('RTE_MACHINE_CPUFLAG_AVX512F', 1)
60         compile_time_cpuflags += ['RTE_CPUFLAG_AVX512F']
61 endif
62
63 dpdk_conf.set('RTE_CACHE_LINE_SIZE', 64)