diff options
-rw-r--r-- | devel/llvm40/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__linux.cc | 20 |
1 files changed, 13 insertions, 7 deletions
diff --git a/devel/llvm40/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__linux.cc b/devel/llvm40/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__linux.cc index f68f299e8a03..a27e784d963d 100644 --- a/devel/llvm40/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__linux.cc +++ b/devel/llvm40/files/compiler-rt/patch-lib_sanitizer__common_sanitizer__linux.cc @@ -1,8 +1,14 @@ -diff --git lib/sanitizer_common/sanitizer_linux.cc lib/sanitizer_common/sanitizer_linux.cc -index 7328a5c0ac1..4b59a39ee27 100644 ---- lib/sanitizer_common/sanitizer_linux.cc -+++ lib/sanitizer_common/sanitizer_linux.cc -@@ -223,7 +223,8 @@ static void kernel_stat_to_stat(struct kernel_stat *in, struct stat *out) { +--- lib/sanitizer_common/sanitizer_linux.cc.orig 2017-01-06 20:57:47.000000000 +0000 ++++ lib/sanitizer_common/sanitizer_linux.cc 2018-04-19 17:03:38.293789000 +0100 +@@ -63,7 +63,6 @@ + #include <sys/exec.h> + #include <sys/sysctl.h> + #include <vm/vm_param.h> +-#include <vm/pmap.h> + #include <machine/atomic.h> + extern "C" { + // <sys/umtx.h> must be included after <errno.h> and <sys/types.h> on +@@ -223,7 +222,8 @@ static void kernel_stat_to_stat(struct k uptr internal_stat(const char *path, void *buf) { #if SANITIZER_FREEBSD @@ -12,7 +18,7 @@ index 7328a5c0ac1..4b59a39ee27 100644 #elif SANITIZER_USES_CANONICAL_LINUX_SYSCALLS return internal_syscall(SYSCALL(newfstatat), AT_FDCWD, (uptr)path, (uptr)buf, 0); -@@ -247,7 +248,8 @@ uptr internal_stat(const char *path, void *buf) { +@@ -247,7 +247,8 @@ uptr internal_stat(const char *path, voi uptr internal_lstat(const char *path, void *buf) { #if SANITIZER_FREEBSD @@ -22,7 +28,7 @@ index 7328a5c0ac1..4b59a39ee27 100644 #elif SANITIZER_USES_CANONICAL_LINUX_SYSCALLS return internal_syscall(SYSCALL(newfstatat), AT_FDCWD, (uptr)path, (uptr)buf, AT_SYMLINK_NOFOLLOW); -@@ -590,7 +592,9 @@ uptr internal_getppid() { +@@ -590,7 +591,9 @@ uptr internal_getppid() { } uptr internal_getdents(fd_t fd, struct linux_dirent *dirp, unsigned int count) { |