From 31b63e9939fe272a64c711cd67bf5054312f62b7 Mon Sep 17 00:00:00 2001 From: Alibek Omarov Date: Fri, 3 May 2024 15:44:35 +0300 Subject: [PATCH] wscript: exclude executing large file test for PSVita --- wscript | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wscript b/wscript index 130f6d19..38172917 100644 --- a/wscript +++ b/wscript @@ -415,7 +415,8 @@ def configure(conf): # set _FILE_OFFSET_BITS=64 for filesystems with 64-bit inodes # must be set globally as it changes ABI - conf.check_large_file(compiler = 'c', execute = False) + if conf.env.DEST_OS not in ['psvita']: + conf.check_large_file(compiler = 'c', execute = False) # indicate if we are packaging for Linux/BSD conf.env.PACKAGING = conf.options.PACKAGING