-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tidy the CMake for aarch64 builds; make lattices conform to new style…
… interface; fix mac+gcc+catch2 problem
- Loading branch information
1 parent
57a74e0
commit 122d424
Showing
6 changed files
with
46 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
--- a/single_include/catch2/catch.hpp 2022-04-12 21:38:17 | ||
+++ b/single_include/catch2/catch.hpp 2024-05-03 12:54:23 | ||
@@ -69,6 +69,11 @@ | ||
// See e.g.: | ||
// https://opensource.apple.com/source/CarbonHeaders/CarbonHeaders-18.1/TargetConditionals.h.auto.html | ||
#ifdef __APPLE__ | ||
+# ifndef __clang__ | ||
+# if !__has_builtin(__has_extension) | ||
+# define __has_extension(x) 0 | ||
+# endif | ||
+# endif | ||
# include <TargetConditionals.h> | ||
# if (defined(TARGET_OS_OSX) && TARGET_OS_OSX == 1) || \ | ||
(defined(TARGET_OS_MAC) && TARGET_OS_MAC == 1) |