8000 BLD: Check Intel compiler when checking complex types in build · numpy/numpy@0ff966e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0ff966e

Browse files
lysnikolaouseberg
andcommitted
BLD: Check Intel compiler when checking complex types in build
Fixes #25034. use clearer syntax Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
1 parent 29cbb1f commit 0ff966e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/_core/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ if not cc.has_header('complex.h')
124124
error('"complex.h" header not found')
125125
endif
126126

127-
if cc.get_argument_syntax() == 'msvc'
127+
if cc.get_id() == 'msvc'
128128
complex_types_to_check = [
129129
['NPY_SIZEOF_COMPLEX_FLOAT', '_Fcomplex'],
130130
['NPY_SIZEOF_COMPLEX_DOUBLE', '_Dcomplex'],

0 commit comments

Comments
 (0)
0