Commit ede863c6 authored by David Crawshaw's avatar David Crawshaw

runtime: add _rt0_arm_android_lib

At the moment this function does nothing, runtime initialization is
still done in android.c:init_go_runtime.

Fixes #10358

Change-Id: I1d762383ba61efcbcf0bbc7c77895f5c1dbf8968
Reviewed-on: https://go-review.googlesource.com/8510Reviewed-by: 's avatarHyang-Ah Hana Kim <hyangah@gmail.com>
parent e449b570
......@@ -9,3 +9,9 @@ TEXT _rt0_arm_android(SB),NOSPLIT,$-4
MOVW $4(R13), R1 // argv
MOVW $_rt0_arm_linux1(SB), R4
B (R4)
// This symbol is called when a shared library is loaded.
TEXT _rt0_arm_android_lib(SB),NOSPLIT,$0
// TODO(crawshaw): initialize runtime.
// At the moment this is done in mobile/app/android.c:init_go_runtime
RET
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment