Merge pull request #68400 from angerman/feature/fix-gmp
[gmp] Fix shared windows cross compilation
This commit is contained in:
commit
24f38780dd
|
@ -37,7 +37,9 @@ let self = stdenv.mkDerivation rec {
|
||||||
"--build=${stdenv.buildPlatform.config}"
|
"--build=${stdenv.buildPlatform.config}"
|
||||||
] ++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
|
] ++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
|
||||||
++ optional (stdenv.isDarwin && stdenv.is64bit) "ABI=64"
|
++ optional (stdenv.isDarwin && stdenv.is64bit) "ABI=64"
|
||||||
++ optional (with stdenv.hostPlatform; (useAndroidPrebuilt || useiOSPrebuilt) && !isx86) "--disable-assembly"
|
# to build a .dll on windows, we need --disable-static + --enable-shared
|
||||||
|
# see https://gmplib.org/manual/Notes-for-Particular-Systems.html
|
||||||
|
++ optional (!withStatic && stdenv.hostPlatform.isWindows) "--disable-static --enable-shared"
|
||||||
;
|
;
|
||||||
|
|
||||||
doCheck = true; # not cross;
|
doCheck = true; # not cross;
|
||||||
|
|
Loading…
Reference in New Issue