From e00f15aa2a0843afbf204157b0b93f8de2bae3ba Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Tue, 24 May 2016 00:07:43 +0200 Subject: [PATCH] Nim check defines 'nimcheck' conditional symbol --- compiler/main.nim | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/main.nim b/compiler/main.nim index ece21a817c..4aefbb85ae 100644 --- a/compiler/main.nim +++ b/compiler/main.nim @@ -41,6 +41,7 @@ proc commandGenDepend = proc commandCheck = msgs.gErrorMax = high(int) # do not stop after first error + defineSymbol("nimcheck") semanticPasses() # use an empty backend for semantic checking only rodPass() compileProject()