Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
3019bbae
Commit
3019bbae
authored
Sep 27, 2011
by
Ian Lance Taylor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mksysinfo: Fix for systems that don't define TIOCSCTTY.
From Rainer Orth. From-SVN: r179269
parent
0578e417
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
libgo/mksysinfo.sh
+8
-0
No files found.
libgo/mksysinfo.sh
View file @
3019bbae
...
...
@@ -499,6 +499,14 @@ grep '^type _passwd ' gen-sysinfo.go | \
grep
'^const _TIOC'
gen-sysinfo.go |
\
sed
-e
's/^\(const \)_\(TIOC[^= ]*\)\(.*\)$/\1\2 = _\2/'
>>
${
OUT
}
# ioctl constants. Might fall back to 0 if TIOCNXCL is missing, too, but
# needs handling in syscalls.exec.go.
if
!
grep
'^const _TIOCSCTTY '
gen-sysinfo.go
>
/dev/null 2>&1
;
then
if
grep
'^const _TIOCNXCL '
gen-sysinfo.go
>
/dev/null 2>&1
;
then
echo
"const TIOCSCTTY = TIOCNXCL"
>>
${
OUT
}
fi
fi
# The nlmsghdr struct.
grep
'^type _nlmsghdr '
gen-sysinfo.go |
\
sed
-e
's/_nlmsghdr/NlMsghdr/'
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment