Skip to content
Snippets Groups Projects
Commit 266512a4 authored by rtoy's avatar rtoy
Browse files

For Linux, default to gencgc.

parent 3934a9cb
No related branches found
No related tags found
No related merge requests found
......@@ -111,10 +111,7 @@ cat $SETENV/base-features.lisp > $TARGET/setenv.lisp
# Put in some platform specific items
case $LISP_VARIANT in
*linux*)
case $$LISP_VARIANT in
*_gencgc*) gcname=":gencgc" ;;
*) gcname=":cgc" ;;
esac
gcname=":gencgc"
sed "s;@@gcname@@;$gcname;" $SETENV/linux-features.lisp >> $TARGET/setenv.lisp
;;
*OpenBSD*)
......@@ -125,8 +122,8 @@ case $LISP_VARIANT in
sed "s;@@gcname@@;$gcname;" $SETENV/openbsd-features.lisp >> $TARGET/setenv.lisp
;;
*FreeBSD*|*freebsd*)
gcname=":gencgc"
sed "s;@@gcname@@;$gcname;" $SETENV/freebsd-features.lisp >> $TARGET/setenv.lisp
gcname=":gencgc"
sed "s;@@gcname@@;$gcname;" $SETENV/freebsd-features.lisp >> $TARGET/setenv.lisp
;;
*solaris*)
cat $SETENV/solaris-features.lisp >> $TARGET/setenv.lisp
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment