Skip to content

Commit b19fcbc

Browse files
staticfloatKristofferC
authored andcommitted
Disable BB GMP and MPFR, to fix performance regressions (#32102)
1 parent 861f7a2 commit b19fcbc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Make.inc

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -940,9 +940,13 @@ USE_BINARYBUILDER := 0
940940
endif
941941

942942
# This is the set of projects that BinaryBuilder dependencies are hooked up for.
943-
BB_PROJECTS := OPENBLAS LLVM SUITESPARSE OPENLIBM GMP MBEDTLS LIBSSH2 MPFR CURL LIBGIT2 PCRE LIBUV UNWIND
943+
BB_PROJECTS := OPENBLAS LLVM SUITESPARSE OPENLIBM MBEDTLS LIBSSH2 CURL LIBGIT2 PCRE LIBUV UNWIND
944944
$(foreach proj,$(BB_PROJECTS),$(if $(USE_BINARYBUILDER_$(proj)),,$(eval USE_BINARYBUILDER_$(proj) := $(USE_BINARYBUILDER))))
945945

946+
# GMP and MPFR have serious performance regressions for now
947+
USE_BINARYBUILDER_GMP ?= 0
948+
USE_BINARYBUILDER_MPFR ?= 0
949+
946950
# Use the Assertions build
947951
BINARYBUILDER_LLVM_ASSERTS := 0
948952

0 commit comments

Comments
 (0)