From 71897683e37ebb063e1671f76bcd6310bb3e8681 Mon Sep 17 00:00:00 2001 From: Jan Klass Date: Tue, 12 Mar 2024 18:44:40 +0100 Subject: [PATCH] misc(proj): Drop armv7 ARCHS MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit CI generated errors because of it. ``` ❌ error: The armv7 architecture is deprecated. You should update your ARCHS build setting to remove the armv7 architecture. (in target 'MumbleKit (iOS)' from project 'MumbleKit') ``` Is this the place to drop it? Is this sufficient or does it also need submodule 3rdparty/** updates? --- cfg/Base.xcconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg/Base.xcconfig b/cfg/Base.xcconfig index 538ba87..4865695 100644 --- a/cfg/Base.xcconfig +++ b/cfg/Base.xcconfig @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -ARCHS = armv7 armv7s arm64 +ARCHS = arm64 SDKROOT = iphoneos MACOSX_DEPLOYMENT_TARGET = 10.7