Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 4dbd847a by Raymond Toy at 2019-05-28T15:57:13Z Update notes
* Update to ASDF 3.3.3 * Note that gcc -O1 can build cmucl now for gcc 8.1.1 and later. * Added x86_linux_clang to build cmucl with clang on linux
- - - - -
1 changed file:
- src/general-info/release-21d.md
Changes:
===================================== src/general-info/release-21d.md ===================================== @@ -17,8 +17,10 @@ public domain.
## New in this release: * Known issues: + * Building with gcc8 or later doesn't work with the default -O option. Use -O1 instead. This shouldn't really impact overall speed much. + * Added simple support to compile with clang instead, which works. (Use x86_linux_clang). * Feature enhancements - * Update to ASDF 3.3.2 + * Update to ASDF 3.3.3 * Changes * x86 and sparc have replaced the MT19937 RNG with xoroshiro128+ RNG. * The required state for this generator is just 4 32-bit words instead of the 600+ for MT19937. @@ -42,6 +44,7 @@ public domain. * ~~#62~~ Segfault when compiling `ARRAY-DISPLACEMENT` on a string constant * ~~#69~~ GC assertions compiled in and allow user to enable them. * ~~#71~~ More info for `MACHINE-TYPE` and `MACHINE-VERSION` for x86 + * #73 Update clx from upstream clx * Other changes: * Improvements to the PCL implementation of CLOS: * Changes to building procedure:
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/4dbd847afe39a4b84ba2ba0ae8...