forked from swiftlang/swift-build
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathiOSSimulator.xcspec
More file actions
78 lines (68 loc) · 2.14 KB
/
Copy pathiOSSimulator.xcspec
File metadata and controls
78 lines (68 loc) · 2.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2025 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
(
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = Standard;
Name = "Standard Architectures";
Description = "Standard architectures";
ListInEnum = YES;
SortNumber = 1;
RealArchitectures = ( arm64, x86_64 );
ArchitectureSetting = "ARCHS_STANDARD";
},
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = x86_64;
PerArchBuildSettingName = "Intel 64-bit";
SortNumber = 106;
DeploymentTargetRange = ( "0", "27" );
},
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = arm64;
PerArchBuildSettingName = "arm64";
SortNumber = 107;
},
// DEPRECATED
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = Universal64bit;
RealArchitectures = ( arm64, x86_64 );
ArchitectureSetting = "ARCHS_STANDARD_64_BIT";
},
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = Platform32_64_bit;
RealArchitectures = ( arm64, x86_64 );
ArchitectureSetting = "ARCHS_STANDARD_32_64_BIT";
},
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = PlatformStandardUniversal;
RealArchitectures = ( arm64, x86_64 );
ArchitectureSetting = "ARCHS_UNIVERSAL_IPHONE_OS";
},
{
_Domain = iphonesimulator;
Type = Architecture;
Identifier = Standard_Including_64_bit;
RealArchitectures = ( "$(ARCHS_STANDARD)" );
ArchitectureSetting = "ARCHS_STANDARD_INCLUDING_64_BIT";
},
)