mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-21 20:29:32 +02:00
+ aix support for testsuite helper programs
git-svn-id: trunk@20806 -
This commit is contained in:
parent
b93cc83703
commit
9efe09a827
@ -609,7 +609,8 @@ begin
|
||||
(LTarget='haiku') or
|
||||
(LTarget='solaris') or
|
||||
(LTarget='iphonesim') or
|
||||
(LTarget='darwin');
|
||||
(LTarget='darwin') or
|
||||
(LTarget='aix');
|
||||
|
||||
{ Set ExeExt for CompilerTarget.
|
||||
This list has been set up 2011-06 using the information in
|
||||
@ -856,12 +857,14 @@ begin
|
||||
{ Add runtime library path to current dir to find .so files }
|
||||
if Config.NeedLibrary then
|
||||
begin
|
||||
if CompilerTarget<>'darwin' then
|
||||
if CompilerTarget='darwin' then
|
||||
args:=args+' -Fl'+TestOutputDir
|
||||
else if CompilerTarget='aix' then
|
||||
args:=args+' -blibpath:'+TestOutputDir
|
||||
else
|
||||
{ do not use single quote for -k as they are mishandled on
|
||||
Windows Shells }
|
||||
args:=args+' -Fl'+TestOutputDir+' -k-rpath -k.'
|
||||
else
|
||||
args:=args+' -Fl'+TestOutputDir;
|
||||
end;
|
||||
end;
|
||||
if Config.NeedOptions<>'' then
|
||||
|
@ -50,6 +50,9 @@ Interface
|
||||
{$ifdef sunos}
|
||||
{$define implemented}
|
||||
{$endif}
|
||||
{$ifdef aix}
|
||||
{$define implemented}
|
||||
{$endif}
|
||||
|
||||
Var
|
||||
IOStatus : Integer;
|
||||
|
Loading…
Reference in New Issue
Block a user