You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2020. It is now read-only.
Lollipop introduced support for 64bit platforms (aarch64, x86_64, mips64). According to android/platform_ndk#143627<sys/system_properties.h> can no longer be used: ABI hidden in libc.so but not libc.a. For one, 4a9648e leads to
/tmp/ccVrqi5L.ltrans2.ltrans.o: In function `api_level':
util.c:1391: undefined reference to `__system_property_get'
/tmp/ccVrqi5L.ltrans3.ltrans.o: In function `compat_property_foreach.lto_priv.74':
cmd_getprop.c:193: undefined reference to `__system_property_find_nth'
/tmp/ccVrqi5L.ltrans3.ltrans.o: In function `property_compare':
cmd_getprop.c:123: undefined reference to `__system_property_read'
cmd_getprop.c:124: undefined reference to `__system_property_read'
/tmp/ccVrqi5L.ltrans8.ltrans.o: In function `getprop_main':
cmd_getprop.c:312: undefined reference to `__system_property_find'
cmd_getprop.c:315: undefined reference to `__system_property_read'
cmd_getprop.c:312: undefined reference to `__system_property_find'
cmd_getprop.c:315: undefined reference to `__system_property_read'
cmd_getprop.c:288: undefined reference to `__system_property_read'
/tmp/ccVrqi5L.ltrans14.ltrans.o: In function `make_abi_mask':
cmd_stub.c:649: undefined reference to `__system_property_find'
cmd_stub.c:651: undefined reference to `__system_property_read'
cmd_stub.c:654: undefined reference to `__system_property_find'
cmd_stub.c:656: undefined reference to `__system_property_read'
cmd_stub.c:660: undefined reference to `__system_property_find'
cmd_stub.c:662: undefined reference to `__system_property_read'
collect2: error: ld returned 1 exit status
Lollipop introduced support for 64bit platforms (aarch64, x86_64, mips64). According to android/platform_ndk#143627
<sys/system_properties.h>can no longer be used: ABI hidden inlibc.sobut notlibc.a. For one, 4a9648e leads to