From fbc1ca11f263c335091fdcb09a626b4366b07eb2 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Tue, 7 Nov 2023 13:53:19 +0000 Subject: [PATCH] removed -stdlib=libc++ flag to clang as required by xcode 15 --- kiwixbuild/platforms/ios.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/kiwixbuild/platforms/ios.py b/kiwixbuild/platforms/ios.py index 9ed9a4d..5e591d3 100644 --- a/kiwixbuild/platforms/ios.py +++ b/kiwixbuild/platforms/ios.py @@ -44,14 +44,12 @@ class ApplePlatformInfo(PlatformInfo): '-isysroot', self.root_path, '-arch', self.arch, '-target', self.target, - '-stdlib=libc++' ], 'extra_cflags': [ '-fembed-bitcode', '-isysroot', self.root_path, '-arch', self.arch, '-target', self.target, - '-stdlib=libc++', *('-I{}'.format(include_dir) for include_dir in self.get_include_dirs()) ], 'host_machine': { @@ -87,7 +85,6 @@ class ApplePlatformInfo(PlatformInfo): env['CFLAGS'] = ' '.join(cflags) env['CXXFLAGS'] = ' '.join([ env['CFLAGS'], - '-stdlib=libc++', '-std=c++11', env['CXXFLAGS'], ])