Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit f838d74

Browse files
committed
[[ Bug ]] Fix android binaries when BFS
This patch fixes the non native binaries path for android architectures other than armv6. These architectures were previously unhandeld so the the bin folders were not found.
1 parent c2cf1c2 commit f838d74

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

Toolset/home.livecodescript

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2213,6 +2213,18 @@ function revEnvironmentNonNativeBinariesPath pPlatform, pSDK
22132213
case "Android armv6"
22142214
put slash & "android-armv6-bin" after tNonNativeBinariesPath
22152215
break
2216+
case "Android armv7"
2217+
put slash & "android-armv7-bin" after tNonNativeBinariesPath
2218+
break
2219+
case "Android arm64"
2220+
put slash & "android-arm64-bin" after tNonNativeBinariesPath
2221+
break
2222+
case "Android x86"
2223+
put slash & "android-x86-bin" after tNonNativeBinariesPath
2224+
break
2225+
case "Android x86_64"
2226+
put slash & "android-x86_64-bin" after tNonNativeBinariesPath
2227+
break
22162228
case "Emscripten"
22172229
case "HTML5"
22182230
put slash & "emscripten-bin" after tNonNativeBinariesPath

0 commit comments

Comments
 (0)