Skip to content

Commit c455218

Browse files
authored
Exclude i386 in addition to armv7. (#166)
1 parent 2fcfc97 commit c455218

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

GoogleSignInSwift/Sources/GoogleSignInButton.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#if !arch(arm)
17+
#if !arch(arm) && !arch(i386)
1818

1919
import SwiftUI
2020
import CoreGraphics
@@ -194,4 +194,4 @@ private extension Font {
194194
}
195195
}
196196

197-
#endif // !arch(arm)
197+
#endif // !arch(arm) && !arch(i386)

GoogleSignInSwift/Sources/GoogleSignInButtonBundleExtensions.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#if !arch(arm)
17+
#if !arch(arm) && !arch(i386)
1818

1919
import Foundation
2020

@@ -65,4 +65,4 @@ extension Bundle {
6565
}
6666
}
6767

68-
#endif // !arch(arm)
68+
#endif // !arch(arm) && !arch(i386)

GoogleSignInSwift/Sources/GoogleSignInButtonStrings.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#if !arch(arm)
17+
#if !arch(arm) && !arch(i386)
1818

1919
import Foundation
2020

@@ -59,4 +59,4 @@ struct GoogleSignInButtonString {
5959
}
6060
}
6161

62-
#endif // !arch(arm)
62+
#endif // !arch(arm) && !arch(i386)

GoogleSignInSwift/Sources/GoogleSignInButtonStyling.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#if !arch(arm)
17+
#if !arch(arm) && !arch(i386)
1818

1919
import SwiftUI
2020

@@ -283,4 +283,4 @@ struct SwiftUIButtonStyle: ButtonStyle {
283283
}
284284
}
285285

286-
#endif // !arch(arm)
286+
#endif // !arch(arm) && !arch(i386)

GoogleSignInSwift/Sources/GoogleSignInButtonViewModel.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* limitations under the License.
1515
*/
1616

17-
#if !arch(arm)
17+
#if !arch(arm) && !arch(i386)
1818

1919
import Combine
2020

@@ -50,4 +50,4 @@ public class GoogleSignInButtonViewModel: ObservableObject {
5050
}
5151
}
5252

53-
#endif // !arch(arm)
53+
#endif // !arch(arm) && !arch(i386)

0 commit comments

Comments
 (0)