diff -uNr tcc-0.9.26.orig/tcc.h tcc-0.9.26-1android/tcc.h
--- tcc-0.9.26.orig/tcc.h 2013-02-15 08:24:00.000000000 -0600
+++ tcc-0.9.26-1android/tcc.h 2014-05-16 23:38:17.599016999 -0500
@@ -43,7 +43,9 @@
#ifndef _WIN32
# include <unistd.h>
# include <sys/time.h>
-# include <sys/ucontext.h>
+# ifndef __ANDROID__
+# include <sys/ucontext.h>
+# endif /* __ANDROID__ */
# include <sys/mman.h>
# ifndef CONFIG_TCC_STATIC
# include <dlfcn.h>
@@ -146,7 +148,7 @@
# endif
#endif
-#if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT
+#if defined TCC_IS_NATIVE && !defined CONFIG_TCCBOOT && !defined __ANDROID__
# define CONFIG_TCC_BACKTRACE
#endif
diff -uNr tcc-0.9.26.orig/tccrun.c tcc-0.9.26-1android/tccrun.c
--- tcc-0.9.26.orig/tccrun.c 2013-02-15 08:24:00.000000000 -0600
+++ tcc-0.9.26-1android/tccrun.c 2014-05-16 23:38:36.949016999 -0500
@@ -35,8 +35,10 @@
static void set_pages_executable(void *ptr, unsigned long length);
static void set_exception_handler(void);
+#ifdef CONFIG_TCC_BACKTRACE
static int rt_get_caller_pc(addr_t *paddr, ucontext_t *uc, int level);
static void rt_error(ucontext_t *uc, const char *fmt, ...);
+#endif
static int tcc_relocate_ex(TCCState *s1, void *ptr);
#ifdef _WIN64