SDL: wait for libapplication.so to load before launching main()

This commit is contained in:
Sergii Pylypenko
2015-01-15 23:43:29 +02:00
parent abef3686fe
commit f5e9ca27e6
5 changed files with 10 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
#!/bin/sh
# Check if any of exported symbols in application clash with symbol from system libraries
# Internal compiler things like '__aeabi_ddiv' or '___Unwind_Resume' may be safely ignored, but 'regcomp' will cause your app to fail.
nm -g -p --defined-only project/obj/local/armeabi/*.so | cut -b 12- | sort | uniq | cat - exports-eclair.txt | sort | uniq -d
nm -g -p --defined-only project/obj/local/armeabi-v7a/*.so | cut -b 12- | sort | uniq | cat - exports-eclair.txt | sort | uniq -d