@@ -20,9 +20,11 @@ TEST_CASE("platform from string", M) {
20
20
REQUIRE (Platform (" all" ) == Platform::Generic);
21
21
22
22
SECTION (" windows" ) {
23
- REQUIRE (Platform (" windows" ) == Platform::Windows_Any);
24
- REQUIRE (Platform (" win32" ) == Platform::Windows_x86);
25
- REQUIRE (Platform (" win64" ) == Platform::Windows_x64);
23
+ REQUIRE (Platform (" windows" ) == Platform::Windows_Any);
24
+ REQUIRE (Platform (" win32" ) == Platform::Windows_x86);
25
+ REQUIRE (Platform (" win64" ) == Platform::Windows_x64);
26
+ REQUIRE (Platform (" win64" , false ) == Platform::Windows_x64_arm64ec);
27
+ REQUIRE (Platform (" windows-arm64ec" ) == Platform::Windows_arm64ec);
26
28
}
27
29
28
30
SECTION (" macOS" ) {
@@ -47,84 +49,92 @@ TEST_CASE("test platform", M) {
47
49
{Platform::Generic, true },
48
50
49
51
#ifdef __APPLE__
50
- {Platform::Linux_Any, false },
51
- {Platform::Linux_x86_64, false },
52
- {Platform::Linux_i686, false },
53
- {Platform::Linux_armv7l, false },
54
- {Platform::Linux_aarch64, false },
55
- {Platform::Windows_Any, false },
56
- {Platform::Windows_x64, false },
57
- {Platform::Windows_x86, false },
58
-
59
- {Platform::Darwin_Any, true },
52
+ {Platform::Linux_Any, false },
53
+ {Platform::Linux_x86_64, false },
54
+ {Platform::Linux_i686, false },
55
+ {Platform::Linux_armv7l, false },
56
+ {Platform::Linux_aarch64, false },
57
+ {Platform::Windows_Any, false },
58
+ {Platform::Windows_x64, false },
59
+ {Platform::Windows_x86, false },
60
+ {Platform::Windows_arm64ec, false },
61
+
62
+ {Platform::Darwin_Any, true },
60
63
# ifdef __x86_64__
61
- {Platform::Darwin_i386, false },
62
- {Platform::Darwin_x86_64, true },
63
- {Platform::Darwin_arm64, false },
64
+ {Platform::Darwin_i386, false },
65
+ {Platform::Darwin_x86_64, true },
66
+ {Platform::Darwin_arm64, false },
64
67
# elif __i386__
65
- {Platform::Darwin_i386, true },
66
- {Platform::Darwin_x86_64, false },
67
- {Platform::Darwin_arm64, false },
68
+ {Platform::Darwin_i386, true },
69
+ {Platform::Darwin_x86_64, false },
70
+ {Platform::Darwin_arm64, false },
68
71
# elif __arm64__
69
- {Platform::Darwin_i386, false },
70
- {Platform::Darwin_x86_64, false },
71
- {Platform::Darwin_arm64, true },
72
+ {Platform::Darwin_i386, false },
73
+ {Platform::Darwin_x86_64, false },
74
+ {Platform::Darwin_arm64, true },
72
75
# else
73
76
# error Untested architecture
74
77
# endif
75
78
76
79
#elif __linux__
77
- {Platform::Darwin_Any, false },
78
- {Platform::Darwin_i386, false },
79
- {Platform::Darwin_x86_64, false },
80
- {Platform::Darwin_arm64, false },
81
- {Platform::Windows_Any, false },
82
- {Platform::Windows_x86, false },
83
- {Platform::Windows_x64, false },
84
-
85
- {Platform::Linux_Any, true },
80
+ {Platform::Darwin_Any, false },
81
+ {Platform::Darwin_i386, false },
82
+ {Platform::Darwin_x86_64, false },
83
+ {Platform::Darwin_arm64, false },
84
+ {Platform::Windows_Any, false },
85
+ {Platform::Windows_x86, false },
86
+ {Platform::Windows_x64, false },
87
+ {Platform::Windows_arm64ec, false },
88
+
89
+ {Platform::Linux_Any, true },
86
90
# ifdef __x86_64__
87
- {Platform::Linux_i686, false },
88
- {Platform::Linux_x86_64, true },
89
- {Platform::Linux_armv7l, false },
90
- {Platform::Linux_aarch64, false },
91
+ {Platform::Linux_i686, false },
92
+ {Platform::Linux_x86_64, true },
93
+ {Platform::Linux_armv7l, false },
94
+ {Platform::Linux_aarch64, false },
91
95
# elif __i686__
92
- {Platform::Linux_i686, true },
93
- {Platform::Linux_x86_64, false },
94
- {Platform::Linux_armv7l, false },
95
- {Platform::Linux_aarch64, false },
96
+ {Platform::Linux_i686, true },
97
+ {Platform::Linux_x86_64, false },
98
+ {Platform::Linux_armv7l, false },
99
+ {Platform::Linux_aarch64, false },
96
100
# elif __ARM_ARCH_7A__
97
- {Platform::Linux_i686, false },
98
- {Platform::Linux_x86_64, false },
99
- {Platform::Linux_armv7l, true },
100
- {Platform::Linux_aarch64, false },
101
+ {Platform::Linux_i686, false },
102
+ {Platform::Linux_x86_64, false },
103
+ {Platform::Linux_armv7l, true },
104
+ {Platform::Linux_aarch64, false },
101
105
# elif __aarch64__
102
- {Platform::Linux_i686, false },
103
- {Platform::Linux_x86_64, false },
104
- {Platform::Linux_armv7l, false },
105
- {Platform::Linux_aarch64, true },
106
+ {Platform::Linux_i686, false },
107
+ {Platform::Linux_x86_64, false },
108
+ {Platform::Linux_armv7l, false },
109
+ {Platform::Linux_aarch64, true },
106
110
# else
107
111
# error Untested architecture
108
112
# endif
109
113
110
114
#elif _WIN32
111
- {Platform::Darwin_Any, false },
112
- {Platform::Darwin_i386, false },
113
- {Platform::Darwin_x86_64, false },
114
- {Platform::Darwin_arm64, false },
115
- {Platform::Linux_Any, false },
116
- {Platform::Linux_x86_64, false },
117
- {Platform::Linux_i686, false },
118
- {Platform::Linux_armv7l, false },
119
- {Platform::Linux_aarch64, false },
120
-
121
- {Platform::Windows_Any, true },
122
- # ifdef _WIN64
123
- {Platform::Windows_x86, false },
124
- {Platform::Windows_x64, true },
115
+ {Platform::Darwin_Any, false },
116
+ {Platform::Darwin_i386, false },
117
+ {Platform::Darwin_x86_64, false },
118
+ {Platform::Darwin_arm64, false },
119
+ {Platform::Linux_Any, false },
120
+ {Platform::Linux_x86_64, false },
121
+ {Platform::Linux_i686, false },
122
+ {Platform::Linux_armv7l, false },
123
+ {Platform::Linux_aarch64, false },
124
+
125
+ {Platform::Windows_Any, true },
126
+ # ifdef _M_ARM64EC
127
+ {Platform::Windows_x86, false },
128
+ {Platform::Windows_x64, false },
129
+ {Platform::Windows_arm64ec, true },
130
+ # elif _M_X64
131
+ {Platform::Windows_x86, false },
132
+ {Platform::Windows_x64, true },
133
+ {Platform::Windows_arm64ec, false },
125
134
# else
126
- {Platform::Windows_x86, true },
127
- {Platform::Windows_x64, false },
135
+ {Platform::Windows_x86, true },
136
+ {Platform::Windows_x64, false },
137
+ {Platform::Windows_arm64ec, false },
128
138
# endif
129
139
130
140
#else
0 commit comments