From efda2bd12b1182f59c7b6af1bc138ceeee8fb1e7 Mon Sep 17 00:00:00 2001 From: Paul Brossier Date: Mon, 16 May 2022 13:17:37 -0400 Subject: [PATCH] [waf] remove obsoleted i386 when building iPhoneSimulator framework (closes gh-361) --- wscript | 2 -- 1 file changed, 2 deletions(-) diff --git a/wscript b/wscript index 048b8a30..ae8b14b5 100644 --- a/wscript +++ b/wscript @@ -280,9 +280,7 @@ def configure(ctx): DEVROOT = "/Applications/Xcode.app/Contents" DEVROOT += "/Developer/Platforms/iPhoneSimulator.platform/Developer" SDKROOT = "%(DEVROOT)s/SDKs/iPhoneSimulator.sdk" % locals() - ctx.env.CFLAGS += [ '-arch', 'i386' ] ctx.env.CFLAGS += [ '-arch', 'x86_64' ] - ctx.env.LINKFLAGS += ['-arch', 'i386'] ctx.env.LINKFLAGS += ['-arch', 'x86_64'] ctx.env.CFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] ctx.env.LINKFLAGS += [ '-mios-simulator-version-min=' + MINSDKVER ] -- 2.11.0