[compiler-rt] adb5775 - [asan] Fix-forward by removing sys/personality.h for non-Linux in #131975
Thurston Dang via llvm-commits
llvm-commits at lists.llvm.org
Thu Mar 20 10:26:15 PDT 2025
Author: Thurston Dang
Date: 2025-03-20T17:25:34Z
New Revision: adb57757b9640768e5070e0e3f6b217c774f9205
URL: https://github.com/llvm/llvm-project/commit/adb57757b9640768e5070e0e3f6b217c774f9205
DIFF: https://github.com/llvm/llvm-project/commit/adb57757b9640768e5070e0e3f6b217c774f9205.diff
LOG: [asan] Fix-forward by removing sys/personality.h for non-Linux in #131975
Fix Solaris build breakage reported in https://github.com/llvm/llvm-project/pull/131975#issuecomment-2741097471
Added:
Modified:
compiler-rt/lib/asan/asan_linux.cpp
Removed:
################################################################################
diff --git a/compiler-rt/lib/asan/asan_linux.cpp b/compiler-rt/lib/asan/asan_linux.cpp
index 9942809ad6209..01cf46dc2fa7d 100644
--- a/compiler-rt/lib/asan/asan_linux.cpp
+++ b/compiler-rt/lib/asan/asan_linux.cpp
@@ -21,7 +21,6 @@
# include <pthread.h>
# include <stdio.h>
# include <sys/mman.h>
-# include <sys/personality.h>
# include <sys/resource.h>
# include <sys/syscall.h>
# include <sys/time.h>
@@ -42,6 +41,10 @@
# include <sys/link_elf.h>
# endif
+# if SANITIZER_LINUX
+# include <sys/personality.h>
+# endif
+
# if SANITIZER_SOLARIS
# include <link.h>
# endif
More information about the llvm-commits
mailing list