disable IC and the SQLite dependency for version 1

This commit is contained in:
Andreas Rumpf
2019-09-03 18:43:57 +02:00
parent ea1a26294f
commit 07a986afa1
3 changed files with 5 additions and 2 deletions

View File

@@ -10,7 +10,7 @@
## Basic type definitions the module graph needs in order to support
## incremental compilations.
const nimIncremental* = true # defined(nimIncremental)
const nimIncremental* = defined(nimIncremental)
import options, lineinfos

View File

@@ -7,6 +7,8 @@ define:nimcore
#define:nimIncremental
#import:"$projectpath/testability"
define:staticSqlite
@if windows:
cincludes: "$lib/wrappers/libffi/common"
@end

View File

@@ -658,7 +658,8 @@ proc processCategory(r: var TResults, cat: Category,
compileRodFiles(r, cat, options)
runRodFiles(r, cat, options)
of "ic":
icTests(r, testsDir, cat, options)
when false:
icTests(r, testsDir, cat, options)
of "js":
# only run the JS tests on Windows or Linux because Travis is bad
# and other OSes like Haiku might lack nodejs: