aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/libcxx/patches/020-fixes.patch
diff options
context:
space:
mode:
authorRosen Penev <rosenp@gmail.com>2020-01-03 18:31:01 -0800
committerHauke Mehrtens <hauke@hauke-m.de>2020-01-05 19:36:45 +0100
commitc84a3458aaee23b6cc6a6ace039596dccb6b7a12 (patch)
tree6b6e3b0442f17950f3a7b68c2e20e54b1646f659 /package/libs/libcxx/patches/020-fixes.patch
parent9a3b10b449a38f88def3a9ccbfcadea111338346 (diff)
downloadupstream-c84a3458aaee23b6cc6a6ace039596dccb6b7a12.tar.gz
upstream-c84a3458aaee23b6cc6a6ace039596dccb6b7a12.tar.bz2
upstream-c84a3458aaee23b6cc6a6ace039596dccb6b7a12.zip
libcxx: Remove -flto from LDFLAGS
It seems the buildbots can't handle it. Added a cmake option to find the cxxabi files as they are part of the toolchain and not in the normal path. It doesn't seem to make a difference, just gets rid of cmake warnings. Added another small GCC warning fix. It's fairly minor. This has no change in compiled size, and most likely no change in behavior. Bumped the PKG_RELEASE anyway. Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'package/libs/libcxx/patches/020-fixes.patch')
-rw-r--r--package/libs/libcxx/patches/020-fixes.patch13
1 files changed, 12 insertions, 1 deletions
diff --git a/package/libs/libcxx/patches/020-fixes.patch b/package/libs/libcxx/patches/020-fixes.patch
index abc630d42f..22ac494c04 100644
--- a/package/libs/libcxx/patches/020-fixes.patch
+++ b/package/libs/libcxx/patches/020-fixes.patch
@@ -1,6 +1,17 @@
+--- a/include/cmath
++++ b/include/cmath
+@@ -615,7 +615,7 @@ _Fp __lerp(_Fp __a, _Fp __b, _Fp __t) no
+
+ if (__t == 1) return __b;
+ const _Fp __x = __a + __t * (__b - __a);
+- if (__t > 1 == __b > __a)
++ if ((__t > 1) == (__b > __a))
+ return __b < __x ? __x : __b;
+ else
+ return __x < __b ? __x : __b;
--- a/include/memory
+++ b/include/memory
-@@ -1696,7 +1696,7 @@ struct _LIBCPP_TEMPLATE_VIS allocator_traits
+@@ -1696,7 +1696,7 @@ struct _LIBCPP_TEMPLATE_VIS allocator_tr
ptrdiff_t _Np = __end1 - __begin1;
__end2 -= _Np;
if (_Np > 0)