1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00

Don't force installation of GMP allocators in guile shell

* libguile/guile.c (main): Don't override initial setting of
scm_install_gmp_memory_functions.  Thanks to Andrew Whatson for the
fix.
This commit is contained in:
Andy Wingo 2021-03-12 22:38:21 +01:00
parent 23042a1ef9
commit db9725fd02

View file

@ -91,7 +91,6 @@ main (int argc, char **argv)
if (should_install_locale () && setlocale (LC_ALL, "") == NULL)
fprintf (stderr, "guile: warning: failed to install locale\n");
scm_install_gmp_memory_functions = 1;
scm_boot_guile (argc, argv, inner_main, 0);
return 0; /* never reached */
}