diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2023-07-11 05:18:21 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2023-08-29 13:57:59 +0000 |
commit | b67c43c411247180e964a69807af21716c17f443 (patch) | |
tree | e9e245a1ebf3b06eb0abcb71d39b97f51b4cb0c7 | |
parent | 0254c3ac39c203ba11123d8a876518cb365ac058 (diff) | |
download | ports-b67c43c411247180e964a69807af21716c17f443.tar.gz ports-b67c43c411247180e964a69807af21716c17f443.zip |
audio/gnome-podcasts: unbreak build on i386
fatal runtime error: Rust cannot catch foreign exceptions
thread '<unnamed>' panicked at '/wrkdirs/usr/ports/lang/rust/work/rustc-1.71.0-src/compiler/rustc_codegen_ssa/src/back/write.rs:1535:21: worker thread panicked', compiler/rustc_middle/src/util/bug.rs:36:26
(signal: 6, SIGABRT: process abort signal)
Reported by: pkg-fallout
-rw-r--r-- | audio/gnome-podcasts/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/audio/gnome-podcasts/Makefile b/audio/gnome-podcasts/Makefile index 018e6d814180..bc6bd05f64e2 100644 --- a/audio/gnome-podcasts/Makefile +++ b/audio/gnome-podcasts/Makefile @@ -29,7 +29,8 @@ GLIB_SCHEMAS= org.gnome.Podcasts.gschema.xml .include <bsd.port.options.mk> -.if ${ARCH} == powerpc +.if ${ARCH} == i386 || ${ARCH} == powerpc +# https://github.com/rust-lang/rust/issues/85598 LTO_UNSAFE= yes .endif |