Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Florian Franzmann (ef2f70e7c2ff2a891e4bfa1aba3d958f5b7c7033)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Florian Franzmann <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Florian Franzmann (ef2f70e7c2ff2a891e4bfa1aba3d958f5b7c7033)
  • Date: Sun, 19 Mar 2023 15:18:24 +0000

GIT changes to master grimoire by Florian Franzmann <bwlf AT bandrate.org>:

devel/llvm/HISTORY | 3 +++
devel/llvm/patches-libcxx/libcxx-musl.patch | 28
----------------------------
2 files changed, 3 insertions(+), 28 deletions(-)

New commits:
commit ef2f70e7c2ff2a891e4bfa1aba3d958f5b7c7033
Author: Florian Franzmann <bwlf AT bandrate.org>
Commit: Florian Franzmann <bwlf AT bandrate.org>

devel/llvm: remove broken patch

diff --git a/devel/llvm/HISTORY b/devel/llvm/HISTORY
index 838dfbb..eab98d3 100644
--- a/devel/llvm/HISTORY
+++ b/devel/llvm/HISTORY
@@ -1,3 +1,6 @@
+2023-03-19 Florian Franzmann <bwlf AT bandrate.org>
+ * patches-libcxx/libcxx-musl.patch: remove broken patch
+
2023-03-18 Pavel Vinogradov <public AT sourcemage.org>
* DETAILS: version 16.0.0
* BUILD: disabled tests
diff --git a/devel/llvm/patches-libcxx/libcxx-musl.patch
b/devel/llvm/patches-libcxx/libcxx-musl.patch
deleted file mode 100644
index 3600f40..0000000
--- a/devel/llvm/patches-libcxx/libcxx-musl.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-Origin: Void Linux
-
---- a/runtimes/libcxx/include/locale
-+++ b/runtimes/libcxx/include/locale
-@@ -742,7 +742,11 @@ __num_get_signed_integral(const char* __a, const char*
__a_end,
- typename remove_reference<decltype(errno)>::type __save_errno =
errno;
- errno = 0;
- char *__p2;
-+#if defined(__linux__) && !defined(__GLIBC__)
-+ long long __ll = strtoll(__a, &__p2, __base);
-+#else
- long long __ll = strtoll_l(__a, &__p2, __base,
_LIBCPP_GET_C_LOCALE);
-+#endif
- typename remove_reference<decltype(errno)>::type __current_errno =
errno;
- if (__current_errno == 0)
- errno = __save_errno;
-@@ -782,7 +786,11 @@ __num_get_unsigned_integral(const char* __a, const
char* __a_end,
- typename remove_reference<decltype(errno)>::type __save_errno =
errno;
- errno = 0;
- char *__p2;
-+#if defined(__linux__) && !defined(__GLIBC__)
-+ unsigned long long __ll = strtoull(__a, &__p2, __base);
-+#else
- unsigned long long __ll = strtoull_l(__a, &__p2, __base,
_LIBCPP_GET_C_LOCALE);
-+#endif
- typename remove_reference<decltype(errno)>::type __current_errno =
errno;
- if (__current_errno == 0)
- errno = __save_errno;



  • [SM-Commit] GIT changes to master grimoire by Florian Franzmann (ef2f70e7c2ff2a891e4bfa1aba3d958f5b7c7033), Florian Franzmann, 03/19/2023

Archive powered by MHonArc 2.6.24.

Top of Page