mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 22:48:57 +02: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;
|
||||
freebsd : begin
|
||||
P.Options.Add('-Fl/usr/local/lib');
|
||||
P.Options.Add('Xd');
|
||||
P.Options.Add('-Xd');
|
||||
end;
|
||||
openbsd : P.Options.Add('-Fl/usr/local/lib');
|
||||
netbsd : P.Options.Add('Xd');
|
||||
openbsd : begin
|
||||
P.Options.Add('-Fl/usr/local/lib');
|
||||
P.Options.Add('-Xd');
|
||||
end;
|
||||
netbsd : P.Options.Add('-Xd');
|
||||
linux : P.Options.Add('-Xd');
|
||||
end; {case}
|
||||
|
||||
P.NeedLibc := true;
|
||||
|
Loading…
Reference in New Issue
Block a user