From 1a79a9488dc63802ea7518638c3faf41211d9a8f Mon Sep 17 00:00:00 2001 From: Xav101 Date: Sun, 23 Nov 2025 20:57:57 -0500 Subject: [PATCH] 3rdparty: libbacktrace: wscript: add irix to the unsupported platforms list. This could probably be made to work at some point but we'll disable it just to keep things simple. --- 3rdparty/libbacktrace/wscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/libbacktrace/wscript b/3rdparty/libbacktrace/wscript index c31f2fd0..e2897d2d 100644 --- a/3rdparty/libbacktrace/wscript +++ b/3rdparty/libbacktrace/wscript @@ -62,7 +62,7 @@ def options(opt): def configure(conf): # add unsupported platforms here - if conf.env.DEST_OS in ['nswitch', 'psvita', 'dos']: + if conf.env.DEST_OS in ['nswitch', 'psvita', 'dos', 'irix']: conf.env.DISABLE_LIBBACKTRACE = True return