SDL: updated the script to check static symbol size in the library
This commit is contained in:
@@ -1,4 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
# Output static/global symbols in a application lib to check if someone allocated 200 Mb static temp array.
|
# Output static/global symbols in a application lib to check if someone allocated 200 Mb static temp array.
|
||||||
# Used to resolve linker errors such as: Cannot load library: alloc_mem_region[815]: OOPS: 54 cannot map library 'libapplication.so'. no vspace available.
|
# Used to resolve linker errors such as: Cannot load library: alloc_mem_region[815]: OOPS: 54 cannot map library 'libapplication.so'. no vspace available.
|
||||||
objdump -x project/obj/local/armeabi/libapplication.so | grep ' ' | sed 's/.* /0x/' | sort -n | xargs -n 2 printf '%d %s\n'
|
OBJ="$1"
|
||||||
|
[ -z "$OBJ" ] && OBJ=project/obj/local/armeabi-v7a/libapplication.so
|
||||||
|
objdump -x -C -w "$OBJ" | grep ' ' | sed 's/.* /0x/' | sort -n | while read SIZE NAME ; do printf '%8d ' "$SIZE" ; echo "$NAME" ; done
|
||||||
|
|||||||
Reference in New Issue
Block a user