CE projects, compilers, gdc & ldc must be replaced by the DMD cmd line bridges

This commit is contained in:
Basile Burg 2016-11-07 07:37:06 +01:00
parent 81dd17d5fc
commit c5ec6dabcd
No known key found for this signature in database
GPG Key ID: 1868039F415CB8CF
1 changed files with 4 additions and 0 deletions

View File

@ -1084,6 +1084,10 @@ var
sel: ICECompilerSelector; sel: ICECompilerSelector;
begin begin
sel := getCompilerSelector; sel := getCompilerSelector;
if value = gdc then
value := gdmd
else if value = ldc then
value := ldmd;
CEProjectCompiler := value; CEProjectCompiler := value;
if not sel.isCompilerValid(CEProjectCompiler) then if not sel.isCompilerValid(CEProjectCompiler) then
CEProjectCompiler := dmd; CEProjectCompiler := dmd;