mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-09-28 06:39:49 +02:00
* Do not use -c command line parameter for the compiler executable, it is already used for the compiler config file
git-svn-id: trunk@16015 -
This commit is contained in:
parent
1d3a1e6691
commit
ed985423ac
@ -180,7 +180,7 @@ begin
|
||||
Writeln(' -o --options=value Pass extra options to the compiler');
|
||||
Writeln(' -n Do not read the default configuration files');
|
||||
Writeln(' -p --prefix=value Specify the prefix');
|
||||
Writeln(' -c --compiler=val. Specify the compiler-executable');
|
||||
Writeln(' --compiler=value Specify the compiler-executable');
|
||||
Writeln('Actions:');
|
||||
Writeln(' update Update packages list');
|
||||
Writeln(' list List available and installed packages');
|
||||
@ -305,7 +305,7 @@ begin
|
||||
FPMakeCompilerOptions.GlobalPrefix := OptionArg(I);
|
||||
FPMakeCompilerOptions.LocalPrefix := OptionArg(I);
|
||||
end
|
||||
else if CheckOption(I,'c','compiler') then
|
||||
else if CheckOption(I,'','compiler') then
|
||||
begin
|
||||
CompilerOptions.Compiler := OptionArg(I);
|
||||
FPMakeCompilerOptions.Compiler := OptionArg(I);
|
||||
|
Loading…
Reference in New Issue
Block a user