Raymond Toy pushed to branch issue-446-use-cc-to-get-errno at cmucl / cmucl
Commits:
-
6ff5b552
by Raymond Toy at 2025-11-06T06:23:31-08:00
4 changed files:
- bin/create-errno.sh
- bin/errno-default.lisp → src/tools/errno-default.lisp
- bin/errno-template.lisp → src/tools/errno-template.lisp
- bin/unix-pkg-template.lisp → src/tools/unix-pkg-template.lisp
Changes:
| ... | ... | @@ -51,13 +51,13 @@ OUTPUT="src/code/errno.lisp" |
| 51 | 51 | OUTPUT_PKG="src/code/exports-unix.lisp"
|
| 52 | 52 | |
| 53 | 53 | # Default file containing errno definitions.
|
| 54 | -ERRNO_FILE="bin/errno-default.lisp"
|
|
| 54 | +ERRNO_FILE="src/tools/errno-default.lisp"
|
|
| 55 | 55 | |
| 56 | 56 | # Template file containing the default def-unix-error forms and other
|
| 57 | 57 | # support code. TEMPLATE is for the definition of all the errno
|
| 58 | 58 | # values. TEMPLATE_PKG is for the definition of the UNIX package.
|
| 59 | -TEMPLATE="bin/errno-template.lisp"
|
|
| 60 | -TEMPLATE_PKG="bin/unix-pkg-template.lisp"
|
|
| 59 | +TEMPLATE="src/tools/errno-template.lisp"
|
|
| 60 | +TEMPLATE_PKG="src/tools/unix-pkg-template.lisp"
|
|
| 61 | 61 | |
| 62 | 62 | # Set ERRNO_FILE to an OS-specific name if possible. If not, use the
|
| 63 | 63 | # default ERRNO_FILE value.
|