Skip to content

Commit d00aa72

Browse files
authored
[android] Fix android-x64 build on Windows (#114342)
Fixes incorrect arch check when using x64.
1 parent 9559b2a commit d00aa72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/native/gen-buildsys.cmd

+1-1
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ if /i "%__Os%" == "android" (
100100
if "%__Arch%" == "arm64" (
101101
set __ExtraCmakeParams=!__ExtraCmakeParams! "-DANDROID_ABI=arm64-v8a"
102102
)
103-
if "%__Arch%" == "x64" (
103+
if "%__Arch%" == "arm" (
104104
set __ExtraCmakeParams=!__ExtraCmakeParams! "-DANDROID_ABI=armeabi-v7a"
105105
)
106106

0 commit comments

Comments
 (0)