Skip to content

Commit 3f5ab0c

Browse files
committed
[rust] Check whether PROC_ASLR_STATUS is defined
For compatibility withe FreeBSD 11.
1 parent 4b7c1b4 commit 3f5ab0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/sanitizer_common/sanitizer_linux.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2185,7 +2185,7 @@ void CheckASLR() {
21852185
CHECK_NE(personality(old_personality | ADDR_NO_RANDOMIZE), -1);
21862186
ReExec();
21872187
}
2188-
#elif SANITIZER_FREEBSD
2188+
#elif SANITIZER_FREEBSD && defined(PROC_ASLR_STATUS)
21892189
int aslr_status;
21902190
if (UNLIKELY(procctl(P_PID, 0, PROC_ASLR_STATUS, &aslr_status) == -1)) {
21912191
// We're making things less 'dramatic' here since

0 commit comments

Comments
 (0)