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
766a1e55
Commit
766a1e55
authored
Jul 06, 2015
by
John Marino
Committed by
Eric Botcazou
Jul 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* s-oscons-tmplt.c: Add support for DragonFly alongside FreeBSD.
From-SVN: r225480
parent
4bc190dc
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
3 deletions
+8
-3
gcc/ada/ChangeLog
+4
-0
gcc/ada/s-oscons-tmplt.c
+4
-3
No files found.
gcc/ada/ChangeLog
View file @
766a1e55
2015
-
07
-
06
John
Marino
<
gnugcc
@
marino
.
st
>
*
s
-
oscons
-
tmplt
.
c
:
Add
support
for
DragonFly
alongside
FreeBSD
.
2015
-
06
-
29
Eric
Botcazou
<
ebotcazou
@
adacore
.
com
>
PR
ada
/
63310
...
...
gcc/ada/s-oscons-tmplt.c
View file @
766a1e55
...
...
@@ -402,7 +402,7 @@ CND(FNDELAY, "Nonblocking")
/* ioctl(2) requests are "int" in UNIX, but "unsigned long" on FreeBSD */
#if
def __FreeBSD__
#if
defined (__FreeBSD__) || defined (__DragonFly__)
# define CNI CNU
# define IOCTL_Req_T "unsigned"
#else
...
...
@@ -1014,7 +1014,7 @@ CNU(RTS_CONTROL_ENABLE, "Enable RTS flow ctrl")
*/
#if defined (__FreeBSD__) || defined (__linux__)
#if defined (__FreeBSD__) || defined (__linux__)
|| defined (__DragonFly__)
# define PTY_Library "-lutil"
#else
# define PTY_Library ""
...
...
@@ -1435,7 +1435,8 @@ CND(CLOCK_FASTEST, "Fastest clock")
#endif
CND
(
CLOCK_THREAD_CPUTIME_ID
,
"Thread CPU clock"
)
#if defined(__FreeBSD__) || (defined(_AIX) && defined(_AIXVERSION_530))
#if defined(__FreeBSD__) || (defined(_AIX) && defined(_AIXVERSION_530)) \
|| defined(__DragonFly__)
/** On these platforms use system provided monotonic clock instead of
** the default CLOCK_REALTIME. We then need to set up cond var attributes
** appropriately (see thread.c).
...
...
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