Ver Fonte

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

git-svn-id: trunk@1586 -
Jonas Maebe há 20 anos atrás
pai
commit
c02951be35
1 ficheiros alterados com 4 adições e 0 exclusões
  1. 4 0
      tests/utils/dotest.pp

+ 4 - 0
tests/utils/dotest.pp

@@ -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;