winegcc: Set the soname of all dlls on Android.

Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2016-07-20 14:55:11 +09:00
parent 1409662393
commit f5929a9cf9
1 changed files with 2 additions and 1 deletions

View File

@ -1130,7 +1130,8 @@ static void build(struct options* opts)
}
break;
case PLATFORM_ANDROID:
/* not supported on Android */
/* the Android loader requires a soname for all libraries */
strarray_add( link_args, strmake( "-Wl,-soname,%s.so", output_name ));
break;
default:
if (opts->image_base)