[gmp] Fix shared windows cross compilation

This commit is contained in:
Moritz Angermann 2019-09-10 10:21:46 +08:00
parent 0256080d11
commit 0e7977015e
No known key found for this signature in database
GPG Key ID: A98C646D142C675F

View File

@ -37,7 +37,9 @@ let self = stdenv.mkDerivation rec {
"--build=${stdenv.buildPlatform.config}"
] ++ optional (cxx && stdenv.isDarwin) "CPPFLAGS=-fexceptions"
++ 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;