mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 12:39:31 +02:00
* add previously missing support for proper handling of -? from the fpc binary
git-svn-id: trunk@20695 -
This commit is contained in:
parent
b12c38984b
commit
2a57a6a307
@ -234,6 +234,8 @@ program fpc;
|
||||
begin
|
||||
if pos('-h',s)=1 then
|
||||
ppccommandline[ppccommandlinelen] := '-hF' + ParamStr (0)
|
||||
else if pos('-?',s)=1 then
|
||||
ppccommandline[ppccommandlinelen] := '-?F' + ParamStr (0)
|
||||
else
|
||||
ppccommandline[ppccommandlinelen]:=s;
|
||||
inc(ppccommandlinelen);
|
||||
|
Loading…
Reference in New Issue
Block a user