mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-15 05:43:19 -08:00
--enable-precisegc defaults to NO until further notice.
This commit is contained in:
parent
f3fa64c038
commit
04eaf044ba
2 changed files with 5 additions and 4 deletions
5
src/configure
vendored
5
src/configure
vendored
|
|
@ -1476,7 +1476,8 @@ Optional Features:
|
|||
--enable-gengc use generational garbage collection. Requires
|
||||
Boehm-Weiser gc. (no|yes, default=NO)
|
||||
--enable-precisegc use type information during garbage collection.
|
||||
Requires Boehm-Weiser gc. (no|yes, default=NO)
|
||||
Requires Boehm-Weiser gc (EXPERIMENTAL). (no|yes,
|
||||
default=NO)
|
||||
|
||||
Optional Packages:
|
||||
--with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
|
||||
|
|
@ -2360,7 +2361,7 @@ fi
|
|||
if test "${enable_precisegc+set}" = set; then
|
||||
enableval=$enable_precisegc; enable_precisegc=${enableval}
|
||||
else
|
||||
enable_precisegc=yes
|
||||
enable_precisegc=no
|
||||
fi
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -242,9 +242,9 @@ AC_ARG_ENABLE(gengc,
|
|||
|
||||
AC_ARG_ENABLE(precisegc,
|
||||
AS_HELP_STRING( [--enable-precisegc],
|
||||
[use type information during garbage collection. Requires Boehm-Weiser gc.]
|
||||
[use type information during garbage collection. Requires Boehm-Weiser gc (EXPERIMENTAL).]
|
||||
[(no|yes, default=NO)]),
|
||||
[enable_precisegc=${enableval}], [enable_precisegc=yes] )
|
||||
[enable_precisegc=${enableval}], [enable_precisegc=no] )
|
||||
|
||||
dnl AC_ARG_ENABLE(debug,
|
||||
dnl AS_HELP_STRING( [--enable-debug],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue