This file contains hidden or 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
| /usr/include/dlfcn.h | |
| /usr/include/wctype.h | |
| /usr/include/sched.h | |
| /usr/include/features.h | |
| /usr/include/netdb.h | |
| /usr/include/utime.h | |
| /usr/include/errno.h | |
| /usr/include/stdint.h | |
| /usr/include/ulimit.h | |
| /usr/include/float.h |
This file contains hidden or 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
| From d17c342f639fa5f74d77e5692426030422608de7 Mon Sep 17 00:00:00 2001 | |
| From: Rasmus Thomsen <[email protected]> | |
| Date: Tue, 2 Oct 2018 14:57:51 +0200 | |
| Subject: [PATCH 1/2] libcxxabi: update to 7.0.0. | |
| [ci skip] | |
| --- | |
| srcpkgs/libcxxabi/template | 31 ++++++++++++++++++++----------- | |
| 1 file changed, 20 insertions(+), 11 deletions(-) |
This file contains hidden or 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
| From 870fcfe6f67c27b9e01cb95e816310f1306e519a Mon Sep 17 00:00:00 2001 | |
| From: Rasmus Thomsen <[email protected]> | |
| Date: Tue, 2 Oct 2018 15:01:09 +0200 | |
| Subject: [PATCH 2/2] libcxx: update to 7.0.0. | |
| [ci skip] | |
| --- | |
| srcpkgs/libcxx/template | 38 +++++++++++--------------------------- | |
| 1 file changed, 11 insertions(+), 27 deletions(-) |
This file contains hidden or 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
| 01:08:06.1 INFO [Spellcheck] Found 2 languages: en_GB,de_DE | |
| Stacktrace: | |
| at <unknown> <0xffffffff> | |
| at (wrapper managed-to-native) Mono.Unix.Native.Syscall.sys_strerror_r (int,System.Text.StringBuilder,ulong) [0x0000b] in <9a38b7b1d29f4b32b1ded50076dc8a4d>:0 | |
| at Mono.Unix.Native.Syscall.strerror_r (Mono.Unix.Native.Errno,System.Text.StringBuilder,ulong) [0x00006] in <9a38b7b1d29f4b32b1ded50076dc8a4d>:0 | |
| at Mono.Unix.Native.Syscall.strerror_r (Mono.Unix.Native.Errno,System.Text.StringBuilder) [0x00008] in <9a38b7b1d29f4b32b1ded50076dc8a4d>:0 | |
| at Mono.Unix.ErrorMarshal.strerror_r (Mono.Unix.Native.Errno) [0x00018] in <9a38b7b1d29f4b32b1ded50076dc8a4d>:0 | |
| at Mono.Unix.ErrorMarshal..cctor () [0x00011] in <9a38b7b1d29f4b32b1ded50076dc8a4d>:0 | |
| at (wrapper runtime-invoke) object.runtime_invoke_void (object,intptr,intptr,intptr) [0x0001e] in <af74c024b1ed4d568c62853b2f8d84c5>:0 |
This file contains hidden or 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
| => make-4.2.1_3: the following build options are set: | |
| guile: Enable support for Guile lang (OFF) | |
| => ERROR: automake is not a bootstrap package and cannot be built without it. | |
| => ERROR: Please install bootstrap packages and try again. | |
| => ERROR: make-4.2.1_3: failed to transform dependency automake |
This file contains hidden or 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
| xbps-rindex -vd --signedby "Rasmus Thomsen <[email protected]>" --privkey $(pwd)/privkey.pem -S /srv/dist | |
| [DEBUG] XBPS: 0.53 API: 20180730 GIT: UNSET | |
| [DEBUG] Processing configuration directory: /etc/xbps.d | |
| [DEBUG] Processing system configuration directory: /usr/share/xbps.d | |
| [DEBUG] Parsing configuration file: /usr/share/xbps.d/00-repository-main.conf | |
| [DEBUG] [repo] `https://alpha.de.repo.voidlinux.org/current/musl' stored successfully | |
| [DEBUG] /usr/share/xbps.d/00-repository-main.conf: added repository https://alpha.de.repo.voidlinux.org/current/musl | |
| [DEBUG] Parsing configuration file: /usr/share/xbps.d/musl-arch.conf | |
| [DEBUG] /usr/share/xbps.d/musl-arch.conf: native architecture set to x86_64-musl | |
| [DEBUG] Parsing configuration file: /usr/share/xbps.d/xbps.conf |
This file contains hidden or 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
| diff --git a/src/libunwind/libunwind.rs b/src/libunwind/libunwind.rs | |
| index 73a259bd4..4bdfcb06e 100644 | |
| --- a/src/libunwind/libunwind.rs | |
| +++ b/src/libunwind/libunwind.rs | |
| @@ -44,10 +44,10 @@ pub const unwinder_private_data_size: usize = 5; | |
| #[cfg(target_arch = "x86_64")] | |
| pub const unwinder_private_data_size: usize = 6; | |
| -#[cfg(all(target_arch = "arm", not(target_os = "ios")))] | |
| +#[cfg(all(target_arch.contains("arm"), not(target_os = "ios")))] |
This file contains hidden or 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
| diff --git a/src/libunwind/libunwind.rs b/src/libunwind/libunwind.rs | |
| index 73a259bd4..30eb40979 100644 | |
| --- a/src/libunwind/libunwind.rs | |
| +++ b/src/libunwind/libunwind.rs | |
| @@ -93,7 +93,7 @@ extern "C" { | |
| } | |
| cfg_if! { | |
| -if #[cfg(all(any(target_os = "ios", target_os = "netbsd", not(target_arch = "arm"))))] { | |
| +if #[cfg(all(any(target_os = "ios", target_os = "netbsd", target_arch = "x86_64", target_arch = "aarch64")))] { |
This file contains hidden or 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
| GEN librsvg/s-enum-types-h | |
| GEN librsvg/s-enum-types-c | |
| make all-recursive | |
| make[1]: Entering directory '/builddir/librsvg-2.44.7' | |
| Making all in . | |
| make[2]: Entering directory '/builddir/librsvg-2.44.7' | |
| cd ./rsvg_internals && \ | |
| PKG_CONFIG_ALLOW_CROSS=1 \ | |
| PKG_CONFIG='/builddir/.xbps-librsvg/wrappers/aarch64-linux-musl-pkg-config' \ | |
| CARGO_TARGET_DIR=/builddir/librsvg-2.44.7/target \ |
This file contains hidden or 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
| --- src/qmplay2/QMPlay2OSD.cpp | |
| +++ src/qmplay2/QMPlay2OSD.cpp | |
| @@ -19,7 +19,11 @@ | |
| #include <QMPlay2OSD.hpp> | |
| #include <QAtomicInteger> | |
| +#if !defined(Q_PROCESSOR_ARM_V6) | |
| static QAtomicInteger<quint64> g_id; | |
| +#else | |
| +static QAtomicInteger<quint32> g_id; |