* don't pass -rpath for Darwin, its linker doesn't know that option

git-svn-id: trunk@1586 -
This commit is contained in:
Jonas Maebe 2005-10-23 18:16:18 +00:00
parent 563821918b
commit c02951be35

View File

@ -498,7 +498,11 @@ begin
{$ifdef unix}
{ Add runtime library path to current dir to find .so files }
if Config.NeedLibrary then
{$ifndef darwin}
args:=args+' -Fl'+TestOutputDir+' ''-k-rpath .''';
{$else darwin}
args:=args+' -Fl'+TestOutputDir;
{$endif darwin}
{$endif unix}
if Config.NeedOptions<>'' then
args:=args+' '+Config.NeedOptions;