mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-24 20:29:34 +02:00
* Do not choke on a non existing compiler executable during initialization
git-svn-id: trunk@40748 -
This commit is contained in:
parent
5d1edc8ca2
commit
0bdfc51a0b
@ -1077,6 +1077,10 @@ var
|
||||
begin
|
||||
if Compiler='' then
|
||||
Exit;
|
||||
// This is not the place to complain when the compiler does
|
||||
// not exist at all.
|
||||
if not FileExists(Compiler) then
|
||||
Exit;
|
||||
if (CompilerCPU=cpuNone) or
|
||||
(CompilerOS=osNone) or
|
||||
(CompilerVersion='') then
|
||||
|
Loading…
Reference in New Issue
Block a user