From 159c4cb19c052c500b7b2c7590cfcb9e80cd8963 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 12 Dec 2017 14:35:49 +0100 Subject: [PATCH] disable auto detection of LDC and GDC, close #148, close #210 --- src/ce_compilers.pas | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/ce_compilers.pas b/src/ce_compilers.pas index 3cc5e13f..eae81d8b 100644 --- a/src/ce_compilers.pas +++ b/src/ce_compilers.pas @@ -175,10 +175,11 @@ begin fPaths.loadFromFile(fname); if not isCompilerValid(dmd) then autoDetectDMD; - if not isCompilerValid(gdc) then - autoDetectGDC; - if not isCompilerValid(ldc) then - autoDetectLDC; + // #148 / #210 + // if not isCompilerValid(gdc) then + // autoDetectGDC; + // if not isCompilerValid(ldc) then + // autoDetectLDC; fPathsBackup.Assign(fPaths); dataToGui;