Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | NetBSD 8 requires some ctype work |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
22acd7c457818791aef720891a52679a |
| User & Date: | rkeene 2019-05-08 21:57:01 |
Context
|
2019-05-09
| ||
| 23:10 | Updated patch for NetBSD compiler, from NixOS project check-in: ef57276d7c user: rkeene tags: trunk | |
|
2019-05-08
| ||
| 21:57 | NetBSD 8 requires some ctype work check-in: 22acd7c457 user: rkeene tags: trunk | |
| 21:56 | Tool versioning improvements check-in: 78c40ae32f user: rkeene tags: trunk | |
Changes
Added patches/gcc/gcc-9.1.0-netbsdctypes.diff.
> > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 |
diff -uNr gcc-9.1.0.orig/libstdc++-v3/config/os/bsd/netbsd/ctype_base.h gcc-9.1.0-netbsdctypes/libstdc++-v3/config/os/bsd/netbsd/ctype_base.h
--- gcc-9.1.0.orig/libstdc++-v3/config/os/bsd/netbsd/ctype_base.h 2019-01-01 06:31:55.000000000 -0600
+++ gcc-9.1.0-netbsdctypes/libstdc++-v3/config/os/bsd/netbsd/ctype_base.h 2019-05-08 16:44:07.429830428 -0500
@@ -45,7 +45,7 @@
// on the mask type. Because of this, we don't use an enum.
typedef unsigned char mask;
-#ifndef _CTYPE_U
+#ifndef _CTYPE_N
static const mask upper = _U;
static const mask lower = _L;
static const mask alpha = _U | _L;
|