-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
upgrade llvm version to 17.0.6 and set default nuttx math lib as default
- Loading branch information
1 parent
80ca3e9
commit a5857e7
Showing
4 changed files
with
76 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- libs/libxx/libcxx/include/__mbstate_t.h 2023-11-28 09:52:28.000000000 +0100 | ||
+++ libs/libxx/libcxx/include/__mbstate_t.h 2023-12-05 16:14:46.523689408 +0100 | ||
@@ -39,12 +39,12 @@ | ||
# define __NEED_mbstate_t | ||
# include <bits/alltypes.h> | ||
# undef __NEED_mbstate_t | ||
+#elif !defined(_LIBCPP_HAS_NO_WIDE_CHARACTERS) && __has_include_next(<wchar.h>) | ||
+# include_next <wchar.h> // fall back to the C standard provider of mbstate_t | ||
#elif __has_include(<bits/types/mbstate_t.h>) | ||
# include <bits/types/mbstate_t.h> // works on most Unixes | ||
#elif __has_include(<sys/_types/_mbstate_t.h>) | ||
# include <sys/_types/_mbstate_t.h> // works on Darwin | ||
-#elif !defined(_LIBCPP_HAS_NO_WIDE_CHARACTERS) && __has_include_next(<wchar.h>) | ||
-# include_next <wchar.h> // fall back to the C standard provider of mbstate_t | ||
#elif __has_include_next(<uchar.h>) | ||
# include_next <uchar.h> // <uchar.h> is also required to make mbstate_t visible | ||
#else |