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
Prev Previous commit
Next Next commit
BLD: fix for clang-cl
  • Loading branch information
mattip committed Nov 7, 2023
commit 5f00b1a36b11e026afc2ac1f93baf5d922b30c2f
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_id() == 'msvc'
if cc.get_id() == 'msvc' or cc.get_id() == 'clang-cl'
complex_types_to_check = [
['NPY_SIZEOF_COMPLEX_FLOAT', '_Fcomplex'],
['NPY_SIZEOF_COMPLEX_DOUBLE', '_Dcomplex'],
Expand Down
0