
Raymond Toy pushed to branch issue-365-add-strerror-with-generated-errno-pkg at cmucl / cmucl Commits: 5e031d45 by Raymond Toy at 2025-02-22T19:39:10-08:00 Forgot to commit create-errno-pkg.sh Script to create the errno package file. - - - - - 1 changed file: - + bin/create-errno-pkg.sh Changes: ===================================== bin/create-errno-pkg.sh ===================================== @@ -0,0 +1,10 @@ +#! /bin/sh + +# For each supported OS, ERRNO_FILES should be set to a list of all +# the files that contain the definitions of the errno values. +case `uname -s` in + Linux) ERRNO_FILES=/usr/include/asm-generic/errno*.h + ;; +esac + +gawk -f bin/gen-errno-exports.gawk ${ERRNO_FILES} View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/5e031d45478487f702342762... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/5e031d45478487f702342762... You're receiving this email because of your account on gitlab.common-lisp.net.