Commit 4bb6a0e0 by Derek Mauro Committed by Copybara-Service

Fix detection of ABSL_HAVE_ELF_MEM_IMAGE on Haiku

Fixes #1181

ORIGINAL_AUTHOR=jerome.duval@gmail.com
PiperOrigin-RevId: 451006334
Change-Id: Id61e5889fb55594d09e92e7bb98fdf8bfbc13cc4
parent 1963f10a
...@@ -31,8 +31,9 @@ ...@@ -31,8 +31,9 @@
#error ABSL_HAVE_ELF_MEM_IMAGE cannot be directly set #error ABSL_HAVE_ELF_MEM_IMAGE cannot be directly set
#endif #endif
#if defined(__ELF__) && !defined(__OpenBSD__) && !defined(__QNX__) && \ #if defined(__ELF__) && !defined(__OpenBSD__) && !defined(__QNX__) && \
!defined(__native_client__) && !defined(__asmjs__) && !defined(__wasm__) !defined(__native_client__) && !defined(__asmjs__) && \
!defined(__wasm__) && !defined(__HAIKU__)
#define ABSL_HAVE_ELF_MEM_IMAGE 1 #define ABSL_HAVE_ELF_MEM_IMAGE 1
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment