Raymond Toy pushed to branch master at cmucl / cmucl
Commits: 0a2e45d4 by Raymond Toy at 2018-07-21T18:03:44-07:00 Default RNG for x86 and sparc is :random-xoroshiro
Replace :random-mt19937 with :random-xoroshiro in the cross-compile scripts.
- - - - -
2 changed files:
- src/tools/cross-scripts/cross-sparc-sparc.lisp - src/tools/cross-scripts/cross-x86-x86.lisp
Changes:
===================================== src/tools/cross-scripts/cross-sparc-sparc.lisp ===================================== --- a/src/tools/cross-scripts/cross-sparc-sparc.lisp +++ b/src/tools/cross-scripts/cross-sparc-sparc.lisp @@ -18,7 +18,7 @@ :relative-package-names ; Relative package names from Allegro :conservative-float-type :hash-new - :random-mt19937 ; MT-19937 generator + :random-xoroshiro ; RNG generator :cmu ; Announce this is CMUCL :cmu20 :cmu20a ; Current version identifier :modular-arith ; Modular arithmetic
===================================== src/tools/cross-scripts/cross-x86-x86.lisp ===================================== --- a/src/tools/cross-scripts/cross-x86-x86.lisp +++ b/src/tools/cross-scripts/cross-x86-x86.lisp @@ -20,7 +20,7 @@ :gencgc ; Generational GC :conservative-float-type :hash-new - :random-mt19937 + :random-xoroshiro ; RNG :cmu :cmu20 :cmu20a ; Version features :double-double ; double-double float support )
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/commit/0a2e45d4d899fd819c89d54933...