We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43ab19a commit a279b99Copy full SHA for a279b99
vendor/init.bat
@@ -154,13 +154,15 @@ if not "%CMDER_SHELL%" == "cmd" (
154
)
155
156
:: Pick the right version of Clink
157
-:: TODO: Support for ARM
158
if "%PROCESSOR_ARCHITECTURE%"=="x86" (
159
set clink_architecture=x86
160
set architecture_bits=32
161
) else if "%PROCESSOR_ARCHITECTURE%"=="AMD64" (
162
set clink_architecture=x64
163
set architecture_bits=64
+) else if "%PROCESSOR_ARCHITECTURE%"=="ARM64" (
164
+ set clink_architecture=arm64
165
+ set architecture_bits=64
166
) else (
167
%print_warning% "Incompatible Processor Detected: %PROCESSOR_ARCHITECTURE%"
168
set CMDER_CLINK=0
0 commit comments