summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce A Henderson <woollybah@gmail.com>2021-12-22 16:30:12 +0000
committerIvan Maidanski <ivmai@mail.ru>2021-12-22 20:06:26 +0300
commit806a08fbe63e88e85f3663edc25763d80bdde89b (patch)
treec3a87d509997f9b4668dbcb062e443cf46c78929
parentcfd78a42ebea3fe071476a0a964cdd2d2a2c62dc (diff)
downloadbdwgc-806a08fbe63e88e85f3663edc25763d80bdde89b.tar.gz
Fix undefined __stack_base__ on UWP/arm64 (llvm-mingw)
(fix of commit 1471f940e) Issue #405 (bdwgc). * include/private/gcconfig.h [__aarch64__] (NOSYS): Do not define if _WIN32.
-rw-r--r--include/private/gcconfig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/private/gcconfig.h b/include/private/gcconfig.h
index 2601b18b..5bb64dcf 100644
--- a/include/private/gcconfig.h
+++ b/include/private/gcconfig.h
@@ -149,7 +149,7 @@ EXTERN_C_BEGIN
# define AARCH64
# if !defined(LINUX) && !defined(DARWIN) && !defined(FREEBSD) \
&& !defined(NETBSD) && !defined(NN_BUILD_TARGET_PLATFORM_NX) \
- && !defined(OPENBSD)
+ && !defined(OPENBSD) && !defined(_WIN32)
# define NOSYS
# define mach_type_known
# endif