• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Keine Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

device/generic/common


Commit MetaInfo

Revisionc6f116790c168254f445c185e47101bef28c229f (tree)
Zeit2020-10-23 07:47:47
AutorJon West <electrikjesus@gmai...>
CommiterJon West

Log Message

Revert "nativebridge: disable 32k32u and 64k64u support temporarily"

This reverts commit a70ce18472041d9b9bba99e054307d90134adb96.

Ändern Zusammenfassung

Diff

--- a/nativebridge/bin/enable_nativebridge
+++ b/nativebridge/bin/enable_nativebridge
@@ -19,11 +19,16 @@ mount_sfs()
1919 }
2020
2121 if [ -z "$1" ]; then
22- v=9_y
23- u=1
22+ if [ "`uname -m`" = "x86_64" ]; then
23+ v=9_y
24+ u=4
25+ else
26+ v=9_x
27+ u=3
28+ fi
2429 else
2530 v=9_z
26- u=2
31+ u=5
2732 fi
2833
2934 if [ -s /system/lib$1/libhoudini.so ]; then
@@ -82,4 +87,6 @@ else
8287 log -pi -thoudini "houdini$1 enabled"
8388 fi
8489
90+[ "$(getprop ro.zygote)" = "zygote64_32" -a -z "$1" ] && exec $0 64
91+
8592 exit 0
--- a/nativebridge/nativebridge.mk
+++ b/nativebridge/nativebridge.mk
@@ -13,6 +13,7 @@ WITH_NATIVE_BRIDGE := true
1313
1414 # Native Bridge ABI List
1515 NATIVE_BRIDGE_ABI_LIST_32_BIT := armeabi-v7a armeabi
16+NATIVE_BRIDGE_ABI_LIST_64_BIT := arm64-v8a
1617
1718 LOCAL_SRC_FILES := bin/enable_nativebridge
1819