mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-05 14:49:37 +01:00
Fix option passing for freebsd ans netbsd, add -Xd for linux also
git-svn-id: trunk@25256 -
This commit is contained in:
parent
cdc7ee0998
commit
c92eaebf34
@ -96,10 +96,14 @@ begin
|
|||||||
end;
|
end;
|
||||||
freebsd : begin
|
freebsd : begin
|
||||||
P.Options.Add('-Fl/usr/local/lib');
|
P.Options.Add('-Fl/usr/local/lib');
|
||||||
P.Options.Add('Xd');
|
P.Options.Add('-Xd');
|
||||||
end;
|
end;
|
||||||
openbsd : P.Options.Add('-Fl/usr/local/lib');
|
openbsd : begin
|
||||||
netbsd : P.Options.Add('Xd');
|
P.Options.Add('-Fl/usr/local/lib');
|
||||||
|
P.Options.Add('-Xd');
|
||||||
|
end;
|
||||||
|
netbsd : P.Options.Add('-Xd');
|
||||||
|
linux : P.Options.Add('-Xd');
|
||||||
end; {case}
|
end; {case}
|
||||||
|
|
||||||
P.NeedLibc := true;
|
P.NeedLibc := true;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user