diff options
author | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-21 05:29:30 +0000 |
---|---|---|
committer | ian <ian@138bc75d-0d04-0410-961f-82ee72b054a4> | 2012-08-21 05:29:30 +0000 |
commit | 7982f4b50bf0b40dd7e31cc870310b2bfdc36c4c (patch) | |
tree | 10f9c14d152864cb89dcfac9fdc51411ce3050d4 /libgo | |
parent | 703e57ebc75bfdee29e83f574c02adfb8afe6e5e (diff) | |
download | gcc-7982f4b50bf0b40dd7e31cc870310b2bfdc36c4c.tar.gz |
mksysinfo: Fix syscall.F_GETLK and friends for 32-bit x86.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@190554 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libgo')
-rwxr-xr-x | libgo/mksysinfo.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/libgo/mksysinfo.sh b/libgo/mksysinfo.sh index 39553445d07..315d60cc39d 100755 --- a/libgo/mksysinfo.sh +++ b/libgo/mksysinfo.sh @@ -211,6 +211,16 @@ if ! grep '^const O_CLOEXEC' ${OUT} >/dev/null 2>&1; then echo "const O_CLOEXEC = 0" >> ${OUT} fi +# These flags can be lost on i386 GNU/Linux when using +# -D_FILE_OFFSET_BITS=64, because we see "#define F_SETLK F_SETLK64" +# before we see the definition of F_SETLK64. +for flag in F_GETLK F_SETLK F_SETLKW; do + if ! grep "^const ${flag} " ${OUT} >/dev/null 2>&1 \ + && grep "^const ${flag}64 " ${OUT} >/dev/null 2>&1; then + echo "const ${flag} = ${flag}64" >> ${OUT} + fi +done + # The signal numbers. grep '^const _SIG[^_]' gen-sysinfo.go | \ grep -v '^const _SIGEV_' | \ |