Commit c2d7bda8 authored by Alexandre Julliard's avatar Alexandre Julliard

loader: The preloader is not supported on Android, don't try to use it.

parent a6156474
......@@ -109,7 +109,14 @@ static void check_command_line( int argc, char *argv[] )
}
#if defined(__linux__) && (defined(__i386__) || defined(__arm__))
#ifdef __ANDROID__
static int pre_exec(void)
{
return 0; /* no exec needed */
}
#elif defined(__linux__) && (defined(__i386__) || defined(__arm__))
#ifdef __i386__
/* separate thread to check for NPTL and TLS features */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment