8000 BLD: Check Intel compiler when checking complex types in build by lysnikolaou · Pull Request #25044 · numpy/numpy · GitHub
[go: up one dir, main page]

Skip to content

BLD: Check Intel compiler when checking complex types in build #25044

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
BLD: Check Intel compiler when checking complex types in build
Fixes #25034.

use clearer syntax

Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
  • Loading branch information
lysnikolaou and seberg committed Nov 6, 2023
commit 0ff966e861314478c69a47095d27fe804ead4731
2 changes: 1 addition & 1 deletion numpy/_core/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ if not cc.has_header('complex.h')
error('"complex.h" header not found')
endif

if cc.get_argument_syntax() == 'msvc'
if cc.get_id() == 'msvc'
complex_types_to_check = [
['NPY_SIZEOF_COMPLEX_FLOAT', '_Fcomplex'],
['NPY_SIZEOF_COMPLEX_DOUBLE', '_Dcomplex'],
Expand Down
0