Carl Shapiro pushed to branch master at cmucl / cmucl
Commits:
5a310229 by Carl Shapiro at 2024-08-21T03:16:56+00:00
Remove underscore prefix from include guard macros
- - - - -
dcb1f7a3 by Carl Shapiro at 2024-08-21T03:16:57+00:00
Merge branch 'fix-include-guard' into 'master'
Remove underscore prefix from include guard macros
See merge request cmucl/cmucl!242
- - - - -
30 changed files:
- src/lisp/Darwin-os.h
- src/lisp/FreeBSD-os.h
- src/lisp/Linux-os.h
- src/lisp/NetBSD-os.h
- src/lisp/OpenBSD-os.h
- src/lisp/alloc.h
- src/lisp/alpha-lispregs.h
- src/lisp/alpha-validate.h
- src/lisp/amd64-lispregs.h
- src/lisp/arch.h
- src/lisp/breakpoint.h
- src/lisp/cgc.h
- src/lisp/core.h
- src/lisp/dynbind.h
- src/lisp/elf.h
- src/lisp/fdlibm.h
- src/lisp/gc.h
- src/lisp/gencgc.h
- src/lisp/globals.h
- src/lisp/hppa-lispregs.h
- src/lisp/hppa-validate.h
- src/lisp/hpux-os.h
- src/lisp/interr.h
- src/lisp/interrupt.h
- src/lisp/irix-os.h
- src/lisp/lisp.h
- src/lisp/lispregs.h
- src/lisp/mach-os.h
- src/lisp/mips-lispregs.h
- src/lisp/mips-validate.h
The diff was not included because it is too large.
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/4683b2415e1e513840fe79…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/4683b2415e1e513840fe79…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch issue-348-u_int64_t-to-uint64_t at cmucl / cmucl
Commits:
84b956b5 by Raymond Toy at 2024-08-21T02:34:59+00:00
Apply 1 suggestion(s) to 1 file(s)
Co-authored-by: Carl Shapiro <cshapiro(a)panix.com>
- - - - -
1 changed file:
- src/lisp/os-common.c
Changes:
=====================================
src/lisp/os-common.c
=====================================
@@ -12,6 +12,7 @@
#include <math.h>
#include <netdb.h>
#include <pwd.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/84b956b5727292d09312306…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/84b956b5727292d09312306…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
c19db71b by Raymond Toy at 2024-08-21T02:34:33+00:00
Fix #339: Add alias for "646" external format for Solaris
- - - - -
4683b241 by Raymond Toy at 2024-08-21T02:34:34+00:00
Merge branch 'issue-339-add-alias-for-646-codeset' into 'master'
Fix #339: Add alias for "646" external format for Solaris
Closes #339
See merge request cmucl/cmucl!246
- - - - -
2 changed files:
- src/pcl/simple-streams/external-formats/aliases
- tests/issues.lisp
Changes:
=====================================
src/pcl/simple-streams/external-formats/aliases
=====================================
@@ -177,6 +177,7 @@ iso-ir-6 ascii
ansi_x3.4-1986 ascii
iso_646.irv\:1991 ascii
iso646-us ascii
+\646 iso646-us
us-ascii ascii
us ascii
ibm367 ascii
=====================================
tests/issues.lisp
=====================================
@@ -1118,3 +1118,11 @@
(assert-error 'file-error
(load "unknown.lisp" :if-does-not-exist t))
(assert-false (load "unknown.lisp" :if-does-not-exist nil)))
+
+(define-test issue.339.646-external-format
+ (:tag :issues)
+ ;; Just verify that the external format :646 exists and is the same
+ ;; as :iso646-us.
+ (assert-true (stream::find-external-format :646 nil))
+ (assert-true (eq (stream::find-external-format :646 nil)
+ (stream::find-external-format :iso646-us nil))))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/a0debef256a185238c2b2c…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/a0debef256a185238c2b2c…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch master at cmucl / cmucl
Commits:
bc927baf by Raymond Toy at 2024-08-21T02:33:54+00:00
Fix #347: Update cross-compile script for Solaris/x86
- - - - -
a0debef2 by Raymond Toy at 2024-08-21T02:33:58+00:00
Merge branch 'issue-347-solaris-x86-build' into 'master'
Fix #347: Update cross-compile script for Solaris/x86
Closes #347
See merge request cmucl/cmucl!244
- - - - -
1 changed file:
- src/tools/cross-scripts/cross-x86-osx-solaris.lisp
Changes:
=====================================
src/tools/cross-scripts/cross-x86-osx-solaris.lisp
=====================================
@@ -25,7 +25,7 @@
:conservative-float-type
:complex-fp-vops
:hash-new
- :random-mt19937
+ :random-xoroshiro
:cmu :cmu21 :cmu21e ; Version features
:double-double ; double-double float support
:linkage-table
@@ -44,6 +44,7 @@
:propagate-fun-type :propagate-float-type :constrain-float-type
:openbsd :freebsd :glibc2 :linux
:mach-o :darwin
+ :random-mt19937
:long-float :new-random :small))
;;;
(setf *features* (remove :bsd *features*))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/c461877a48398c0f48eab0…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/compare/c461877a48398c0f48eab0…
You're receiving this email because of your account on gitlab.common-lisp.net.
Raymond Toy pushed to branch issue-339-add-alias-for-646-codeset at cmucl / cmucl
Commits:
d3baf761 by Raymond Toy at 2024-08-20T16:00:07-07:00
Add a test for external format :646
Verify that the external format `:646` exists and that it is the same
as the external-format `:iso646-us`.
We do this because #339 mentions that in Java, "646" is the same as
"ISO646-US".
- - - - -
1 changed file:
- tests/issues.lisp
Changes:
=====================================
tests/issues.lisp
=====================================
@@ -1118,3 +1118,11 @@
(assert-error 'file-error
(load "unknown.lisp" :if-does-not-exist t))
(assert-false (load "unknown.lisp" :if-does-not-exist nil)))
+
+(define-test issue.339.646-external-format
+ (:tag :issues)
+ ;; Just verify that the external format :646 exists and is the same
+ ;; as :iso646-us.
+ (assert-true (stream::find-external-format :646 nil))
+ (assert-true (eq (stream::find-external-format :646 nil)
+ (stream::find-external-format :iso646-us nil))))
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d3baf7610d8ebc7b0079dcc…
--
View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/d3baf7610d8ebc7b0079dcc…
You're receiving this email because of your account on gitlab.common-lisp.net.