We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae842a4 commit 98fc94aCopy full SHA for 98fc94a
deps/simdutf/simdutf.gyp
@@ -1,4 +1,9 @@
1
{
2
+ 'variables': {
3
+ 'gas_version%': '0.0',
4
+ 'nasm_version%': '0.0',
5
+ 'llvm_version%': '0.0',
6
+ },
7
'targets': [
8
9
'target_name': 'simdutf',
@@ -8,6 +13,16 @@
13
'include_dirs': ['.'],
14
},
10
15
'sources': ['simdutf.cpp'],
16
+ 'conditions': [
17
+ ['OS=="linux"', {
18
19
+ # TODO(anonrig): Remove this validation when benchmark CI has binutils >= 2.30
20
+ ['v(gas_version) < v("2.30") and v(nasm_version) < v("2.14") and v(llvm_version) < v("6.0")', {
21
+ 'defines': ['SIMDUTF_IMPLEMENTATION_ICELAKE=0'],
22
+ }],
23
+ ],
24
25
11
26
12
27
]
28
}
0 commit comments