Raymond Toy pushed to branch issue-365-add-strerror-with-generated-errno-pkg at cmucl / cmucl

Commits:

1 changed file:

Changes:

  • bin/create-errno-pkg.sh
    1
    +#! /bin/sh
    
    2
    +
    
    3
    +# For each supported OS, ERRNO_FILES should be set to a list of all
    
    4
    +# the files that contain the definitions of the errno values.
    
    5
    +case `uname -s` in
    
    6
    +    Linux) ERRNO_FILES=/usr/include/asm-generic/errno*.h
    
    7
    +	   ;;
    
    8
    +esac
    
    9
    +    
    
    10
    +gawk -f bin/gen-errno-exports.gawk ${ERRNO_FILES}