[compiler-rt] 89a1197 - [asan] Fix-forward by adding SANITIZER_LINUX guard to 131975

Thurston Dang via llvm-commits llvm-commits at lists.llvm.org
Thu Mar 20 10:24:06 PDT 2025


Author: Thurston Dang
Date: 2025-03-20T17:23:03Z
New Revision: 89a1197c1f4ff11178109efe51bc82223c68f513

URL: https://github.com/llvm/llvm-project/commit/89a1197c1f4ff11178109efe51bc82223c68f513
DIFF: https://github.com/llvm/llvm-project/commit/89a1197c1f4ff11178109efe51bc82223c68f513.diff

LOG: [asan] Fix-forward by adding SANITIZER_LINUX guard to 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 7620ecb1e81f9..9942809ad6209 100644
--- a/compiler-rt/lib/asan/asan_linux.cpp
+++ b/compiler-rt/lib/asan/asan_linux.cpp
@@ -109,6 +109,7 @@ void FlushUnneededASanShadowMemory(uptr p, uptr size) {
 }
 
 void ReExecWithoutASLR() {
+#    if SANITIZER_LINUX
   // ASLR personality check.
   // Caution: 'personality' is sometimes forbidden by sandboxes, so only call
   // this function as a last resort (when the memory mapping is incompatible
@@ -137,6 +138,7 @@ void ReExecWithoutASLR() {
 
     ReExec();
   }
+#    endif
 }
 
 #  if SANITIZER_ANDROID


        


More information about the llvm-commits mailing list