aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJorge Lucangeli Obes <jorgelo@google.com>2016-04-11 13:30:08 -0700
committerJorge Lucangeli Obes <jorgelo@google.com>2016-04-11 14:31:50 -0700
commit9e35c09854e55973731f80dd7cc41b80c20eec42 (patch)
treeb0c1de23e9d4218b94459b2ee52a7ec6a8babd0a
parent2413f3713ae8a306a23550e2eecd59f380f34eae (diff)
downloadminijail-9e35c09854e55973731f80dd7cc41b80c20eec42.tar.gz
Fix #ifdef statement.
Previous version did not compile with GCC. Bug: None Change-Id: I9f8b40e6e965a7573505cc7f3c1c650b37522926
-rw-r--r--Android.mk2
-rw-r--r--util.h6
2 files changed, 7 insertions, 1 deletions
diff --git a/Android.mk b/Android.mk
index b79a989..dd2db53 100644
--- a/Android.mk
+++ b/Android.mk
@@ -205,6 +205,8 @@ LOCAL_MODULE := drop_privs
LOCAL_MODULE_TAGS := optional
LOCAL_CFLAGS := $(minijailCommonCFlags)
LOCAL_CLANG := true
+# Don't build with ASan, but leave commented out for easy local debugging.
+# LOCAL_SANITIZE := address
LOCAL_SRC_FILES := \
examples/drop_privs.cpp
diff --git a/util.h b/util.h
index b4efc2f..15dd56b 100644
--- a/util.h
+++ b/util.h
@@ -38,7 +38,11 @@ static inline int is_android() {
}
static inline int running_with_asan() {
-#if defined(__clang__) && __has_feature(address_sanitizer)
+#ifndef __has_feature
+#define __has_feature(x) 0
+#endif
+
+#if __has_feature(address_sanitizer)
return 1;
#else
return 0;