From gitlab at common-lisp.net Tue May 28 15:57:26 2019 From: gitlab at common-lisp.net (Raymond Toy) Date: Tue, 28 May 2019 15:57:26 +0000 Subject: [Git][cmucl/cmucl][master] Update notes Message-ID: <5ced5a6638d6d_56ad3f9330a302ac812d5@common-lisp.net.mail> 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/4dbd847afe39a4b84ba2ba0ae838c12eb72de5f8 -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/4dbd847afe39a4b84ba2ba0ae838c12eb72de5f8 You're receiving this email because of your account on gitlab.common-lisp.net. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at common-lisp.net Tue May 28 16:15:35 2019 From: gitlab at common-lisp.net (Raymond Toy) Date: Tue, 28 May 2019 16:15:35 +0000 Subject: [Git][cmucl/cmucl][master] Strikethru #73 since it's done. Message-ID: <5ced5ea7f001c_56ad3f933aceb6a48143a@common-lisp.net.mail> Raymond Toy pushed to branch master at cmucl / cmucl Commits: 1ca3f155 by Raymond Toy at 2019-05-28T16:02:28Z Strikethru #73 since it's done. [skip ci] - - - - - 1 changed file: - src/general-info/release-21d.md Changes: ===================================== src/general-info/release-21d.md ===================================== @@ -44,7 +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 + * ~~#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/1ca3f1554de6a91873132f0182226c2c2cc5805b -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/1ca3f1554de6a91873132f0182226c2c2cc5805b You're receiving this email because of your account on gitlab.common-lisp.net. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at common-lisp.net Tue May 28 16:16:19 2019 From: gitlab at common-lisp.net (Raymond Toy) Date: Tue, 28 May 2019 16:16:19 +0000 Subject: [Git][cmucl/cmucl] Pushed new tag snapshot-2019-06 Message-ID: <5ced5ed37c01e_56ad3f933acea560816f7@common-lisp.net.mail> Raymond Toy pushed new tag snapshot-2019-06 at cmucl / cmucl -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/tree/snapshot-2019-06 You're receiving this email because of your account on gitlab.common-lisp.net. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at common-lisp.net Wed May 29 00:04:36 2019 From: gitlab at common-lisp.net (Raymond Toy) Date: Wed, 29 May 2019 00:04:36 +0000 Subject: [Git][cmucl/cmucl][master] 2 commits: Revert "Strikethru #73 since it's done." Message-ID: <5cedcc9411a3a_56ad3f933069dcc08337d@common-lisp.net.mail> Raymond Toy pushed to branch master at cmucl / cmucl Commits: 099c70f2 by Raymond Toy at 2019-05-29T00:02:22Z Revert "Strikethru #73 since it's done." This reverts commit 1ca3f1554de6a91873132f0182226c2c2cc5805b. - - - - - d7ecf782 by Raymond Toy at 2019-05-29T00:03:37Z Revert "Update notes" This reverts commit 4dbd847afe39a4b84ba2ba0ae838c12eb72de5f8. release-21d.md was erroneously modified. It should have been done to release-21e.md, a new file. We've already released 21d. - - - - - 1 changed file: - src/general-info/release-21d.md Changes: ===================================== src/general-info/release-21d.md ===================================== @@ -17,10 +17,8 @@ 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.3 + * Update to ASDF 3.3.2 * 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. @@ -44,7 +42,6 @@ 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/compare/1ca3f1554de6a91873132f0182226c2c2cc5805b...d7ecf782dc9a2531e33439500e4cbc3111e23edf -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/compare/1ca3f1554de6a91873132f0182226c2c2cc5805b...d7ecf782dc9a2531e33439500e4cbc3111e23edf You're receiving this email because of your account on gitlab.common-lisp.net. -------------- next part -------------- An HTML attachment was scrubbed... URL: From gitlab at common-lisp.net Wed May 29 00:07:55 2019 From: gitlab at common-lisp.net (Raymond Toy) Date: Wed, 29 May 2019 00:07:55 +0000 Subject: [Git][cmucl/cmucl][master] Initial revision for 21e changes. WIP Message-ID: <5cedcd5b2b517_56ad3f933acea94883512@common-lisp.net.mail> Raymond Toy pushed to branch master at cmucl / cmucl Commits: 35ed80d7 by Raymond Toy at 2019-05-29T00:07:48Z Initial revision for 21e changes. WIP [skip ci] - - - - - 1 changed file: - + src/general-info/release-21e.md Changes: ===================================== src/general-info/release-21e.md ===================================== @@ -0,0 +1,45 @@ +# CMUCL 21e + +## Work in prograss + +The CMUCL project is pleased to announce the release of CMUCL 21e. +This is a major release which contains numerous enhancements and bug +fixes from the 21a release. + +CMUCL is a free, high performance implementation of the Common Lisp +programming language which runs on most major Unix platforms. It +mainly conforms to the ANSI Common Lisp standard. CMUCL provides a +sophisticated native code compiler; a powerful foreign function +interface; an implementation of CLOS, the Common Lisp Object System, +which includes multi-methods and a meta-object protocol; a +source-level debugger and code profiler; and an Emacs-like editor +implemented in Common Lisp. CMUCL is maintained by a team of +volunteers collaborating over the Internet, and is mostly in the +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.3 + * Changes + * ANSI compliance fixes: + * Bug fixes: + * Gitlab tickets: + * ~~#73~~ Update clx from upstream clx + * Other changes: + * Improvements to the PCL implementation of CLOS: + * Changes to building procedure: + +This release is not binary compatible with code compiled using CMUCL +21d; you will need to recompile FASL files. + +See http://www.cmucl.org or +https://gitlab.common-lisp.net/cmucl/cmucl for more information, +See +https://gitlab.common-lisp.net/cmucl/cmucl/wikis/GettingCmucl +for obtaining CMUCL, including sources and binaries.. + + +We hope you enjoy using this release of CMUCL! View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/35ed80d7902d42c4f2349c5e84f8392f084c82b7 -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/35ed80d7902d42c4f2349c5e84f8392f084c82b7 You're receiving this email because of your account on gitlab.common-lisp.net. -------------- next part -------------- An HTML attachment was scrubbed... URL: