We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 666e191 commit d1906a1Copy full SHA for d1906a1
lib/cext/include/truffleruby/config_darwin_amd64.h
@@ -76,8 +76,6 @@
76
#if defined(__x86_64__)
77
#define HAVE_X86INTRIN_H 1
78
#endif
79
-#define HAVE_GMP_H 1
80
-#define HAVE_LIBGMP 1
81
#define HAVE_TYPEOF 1
82
#define restrict __restrict__
83
#define HAVE_LONG_LONG 1
tool/generate-config-header.sh
@@ -33,6 +33,7 @@ if [ ! -d "ruby-$VERSION" ]; then
33
fi
34
35
cd "ruby-$VERSION" || exit 1
36
-./configure || (cat config.log; exit 1)
+# Disable GMP as it might not be available on the runtime machine and we do not use it
37
+./configure --without-gmp || (cat config.log; exit 1)
38
39
cp .ext/include/*/ruby/config.h "../lib/cext/include/truffleruby/config_${mx_platform}.h"
0 commit comments