From 9de018c3d8d14881abd24734796bcb5ba233c1f7 Mon Sep 17 00:00:00 2001 From: pelya Date: Mon, 17 Jan 2011 15:58:10 +0000 Subject: [PATCH] Script to check static data size in a libapplication.so --- checkStaticDataSize.sh | 4 ++++ todo.txt | 4 ++++ 2 files changed, 8 insertions(+) create mode 100755 checkStaticDataSize.sh diff --git a/checkStaticDataSize.sh b/checkStaticDataSize.sh new file mode 100755 index 000000000..d3e4d0f44 --- /dev/null +++ b/checkStaticDataSize.sh @@ -0,0 +1,4 @@ +#!/bin/sh +# 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. +objdump -x project/obj/local/armeabi/libapplication.so | grep ' ' | sed 's/.* /0x/' | sort -n diff --git a/todo.txt b/todo.txt index e79b18e67..19a7ac16c 100644 --- a/todo.txt +++ b/todo.txt @@ -15,8 +15,12 @@ Bugs to fix - Option for touch screen to act like laptop touchpad. +- With 4:3 screen aspect ratio the on-screen buttons are not shown on the inactive part of screen. + - Calling SDL_SetVideoMode() with SDL 1.3 several times makes it crash. - Support for NDK r5b, when it's released. +- Support of libjnigraphics (it will disable on-screen keyboard) + And that's all, I won't be doing any more development or fix other bugs (see bugs.txt for details).