Commit 529ecd98 authored by David McFarland's avatar David McFarland
Browse files

gmp: fix cygwin build

parent be8c8ea7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -69,7 +69,7 @@ let
    ++ optional (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.is64bit) "ABI=64"
    # 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"
    ++ optional (!withStatic && stdenv.hostPlatform.isPE) "--disable-static --enable-shared"
    ++ optional (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64) "--disable-assembly";

    doCheck = true; # not cross;