From 9b5511adaca560a382eb65a46fe235f213c70fb3 Mon Sep 17 00:00:00 2001 From: yury Date: Tue, 1 Jan 2013 23:59:48 +0000 Subject: [PATCH] * libctype is not needed, since only bionic is supported anyway. git-svn-id: branches/targetandroid@23285 - --- compiler/systems/t_android.pas | 6 ------ 1 file changed, 6 deletions(-) diff --git a/compiler/systems/t_android.pas b/compiler/systems/t_android.pas index 83f2c603b9..239c9219fa 100644 --- a/compiler/systems/t_android.pas +++ b/compiler/systems/t_android.pas @@ -44,7 +44,6 @@ interface tlinkerandroid=class(texternallinker) private - libctype:(bionic); prtobj : string[80]; reorder : boolean; Function WriteResponseFile(isdll:boolean) : Boolean; @@ -137,11 +136,6 @@ begin ExtDbgCmd[1]:='objcopy --only-keep-debug $EXE $DBG'; ExtDbgCmd[2]:='objcopy --add-gnu-debuglink=$DBG $EXE'; ExtDbgCmd[3]:='strip --strip-unneeded $EXE'; - - { - There is only one C library on android, the bionic libc - } - libctype:=bionic; DynamicLinker:='/system/bin/linker'; end; end;