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
409f3b46
Commit
409f3b46
authored
Dec 19, 2013
by
Kostya Serebryany
Committed by
Kostya Serebryany
Dec 19, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
libsanitizer: fix build on Mac 10.6
From-SVN: r206113
parent
d0de9e13
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
0 deletions
+11
-0
libsanitizer/ChangeLog
+6
-0
libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
+5
-0
No files found.
libsanitizer/ChangeLog
View file @
409f3b46
2013-12-19 Kostya Serebryany <kcc@google.com>
* sanitizer_common/sanitizer_platform_limits_posix.cc:
workaround for missing definition of EOWNERDEAD, backport
from upstream r196779.
2013-12-06 H.J. Lu <hongjiu.lu@intel.com>
* sanitizer_common/sanitizer_platform_limits_posix.h
...
...
libsanitizer/sanitizer_common/sanitizer_platform_limits_posix.cc
View file @
409f3b46
...
...
@@ -760,7 +760,12 @@ namespace __sanitizer {
unsigned
IOCTL_TIOCSSERIAL
=
TIOCSSERIAL
;
#endif
// EOWNERDEAD is not present in some older platforms.
#if defined(EOWNERDEAD)
extern
const
int
errno_EOWNERDEAD
=
EOWNERDEAD
;
#else
extern
const
int
errno_EOWNERDEAD
=
-
1
;
#endif
}
// namespace __sanitizer
COMPILER_CHECK
(
sizeof
(
__sanitizer_pthread_attr_t
)
>=
sizeof
(
pthread_attr_t
));
...
...
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