diff options
author | 2017-04-18 15:35:24 +0000 | |
---|---|---|
committer | 2017-04-18 15:35:24 +0000 | |
commit | 60f9c91b81c4e318101a49794c0f84f0961bd10a (patch) | |
tree | ae3ce4eaf73290286f1da0c1d8074b8a60948439 /lib/libunwind/src/libunwind.cpp | |
parent | Do not check for BCE for a background colour that isn't needed, use (diff) | |
download | wireguard-openbsd-60f9c91b81c4e318101a49794c0f84f0961bd10a.tar.xz wireguard-openbsd-60f9c91b81c4e318101a49794c0f84f0961bd10a.zip |
Add sparc64 support.
Diffstat (limited to 'lib/libunwind/src/libunwind.cpp')
-rw-r--r-- | lib/libunwind/src/libunwind.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/libunwind/src/libunwind.cpp b/lib/libunwind/src/libunwind.cpp index 95f2dc020dc..46b26fedc28 100644 --- a/lib/libunwind/src/libunwind.cpp +++ b/lib/libunwind/src/libunwind.cpp @@ -57,6 +57,8 @@ _LIBUNWIND_EXPORT int unw_init_local(unw_cursor_t *cursor, # define REGISTER_KIND Registers_arm #elif defined(__or1k__) # define REGISTER_KIND Registers_or1k +#elif defined(__sparc__) && defined(__arch64__) +# define REGISTER_KIND Registers_sparc64 #elif defined(__mips__) # warning The MIPS architecture is not supported. #else |