* Do not choke on a non existing compiler executable during initialization

git-svn-id: trunk@40748 -
This commit is contained in:
joost 2019-01-02 23:29:45 +00:00
parent 5d1edc8ca2
commit 0bdfc51a0b

View File

@ -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