mirror of
https://github.com/creack/pty.git
synced 2026-03-31 18:47:10 +09:00
Add _IOC macros (<sys/ioccom.h>, <asm-generic/ioctl.h>) for linux and bsd's, unify ioctl() calls. FreeBSD: use modern pts(4) interface instead of the old pty(4) one
20 lines
311 B
Bash
Executable File
20 lines
311 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
GOOSARCH="${GOOS}_${GOARCH}"
|
|
case "$GOOSARCH" in
|
|
_* | *_ | _)
|
|
echo 'undefined $GOOS_$GOARCH:' "$GOOSARCH" 1>&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
GODEFS="go tool cgo -godefs"
|
|
|
|
$GODEFS types.go |gofmt > ztypes_$GOARCH.go
|
|
|
|
case $GOOS in
|
|
freebsd)
|
|
$GODEFS types_$GOOS.go |gofmt > ztypes_$GOOSARCH.go
|
|
;;
|
|
esac
|