mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 05:39:19 +02:00
* Fixed running library tests on android.
git-svn-id: branches/targetandroid@23385 -
This commit is contained in:
parent
9330507f8d
commit
32551f3c6b
@ -644,7 +644,8 @@ begin
|
|||||||
(LTarget='solaris') or
|
(LTarget='solaris') or
|
||||||
(LTarget='iphonesim') or
|
(LTarget='iphonesim') or
|
||||||
(LTarget='darwin') or
|
(LTarget='darwin') or
|
||||||
(LTarget='aix');
|
(LTarget='aix') or
|
||||||
|
(LTarget='android');
|
||||||
|
|
||||||
{ Set ExeExt for CompilerTarget.
|
{ Set ExeExt for CompilerTarget.
|
||||||
This list has been set up 2011-06 using the information in
|
This list has been set up 2011-06 using the information in
|
||||||
@ -1462,6 +1463,11 @@ var
|
|||||||
begin
|
begin
|
||||||
if RemoteAddr='' then
|
if RemoteAddr='' then
|
||||||
exit;
|
exit;
|
||||||
|
if rshprog = 'adb' then
|
||||||
|
begin
|
||||||
|
RemoteShellNeedsExport:=true;
|
||||||
|
exit;
|
||||||
|
end;
|
||||||
ExeLogFile:='__remote.tmp';
|
ExeLogFile:='__remote.tmp';
|
||||||
ExecuteRemote(rshprog,RemoteRshParas+
|
ExecuteRemote(rshprog,RemoteRshParas+
|
||||||
' "echo SHELL=${SHELL}"',StartTicks,EndTicks);
|
' "echo SHELL=${SHELL}"',StartTicks,EndTicks);
|
||||||
|
Loading…
Reference in New Issue
Block a user