-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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
fftw: Re-enable OpenMP with non-GCC and musl #79815
Conversation
I've tested by:
|
This needs a test on Darwin, can somebody please ofborg-build it for me? |
For now anyway, since we build w/o support for it IIRC.
Clang now supports OpenMP, and musl has no problem with it either. Related to NixOS#7023 and NixOS#34645. See also NixOS#79818.
66cddb8
to
a72367a
Compare
@@ -32,7 +38,7 @@ stdenv.mkDerivation { | |||
# all x86_64 have sse2 | |||
# however, not all float sizes fit | |||
++ optional (stdenv.isx86_64 && (precision == "single" || precision == "double") ) "--enable-sse2" | |||
++ optional (stdenv.cc.isGNU && !stdenv.hostPlatform.isMusl) "--enable-openmp" | |||
++ [ "--enable-openmp" ] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keeping this here instead of moving it up to avoid mass-rebuilds on normal Linux.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- The change looks good to me
- It builds on darwin for me
- The build finds the
-fopenmp
flag
Motivation for this change
Clang now supports OpenMP, and musl has no problem with it either.
Following 3413562.
Related to #7023 (cc @acowley) and #34645.
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)CC @spwhitt