diff options
author | flywind <xzsflywind@gmail.com> | 2021-11-02 16:10:25 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-02 09:10:25 +0100 |
commit | e01e543fce8eab147d4e7eb5b89bba80c25e9cb3 (patch) | |
tree | daa9e6cf376d391ab50d6230737ccfa053109d0c /koch.nim | |
parent | 2e0db988e7efd05b07f5165cf1357efea9391eb3 (diff) | |
download | Nim-e01e543fce8eab147d4e7eb5b89bba80c25e9cb3.tar.gz |
bootstrapping Nim compiler with `cpp --gc:orc` (#19087)
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/koch.nim b/koch.nim index 8dd897028..06515aad7 100644 --- a/koch.nim +++ b/koch.nim @@ -602,9 +602,8 @@ proc runCI(cmd: string) = execFold("Run atlas tests", "nim c -r -d:atlasTests tools/atlas/atlas.nim clone https://github.com/disruptek/balls") when not defined(bsd): - if not doUseCpp: - # the BSDs are overwhelmed already, so only run this test on the other machines: - kochExecFold("Boot Nim ORC", "boot -d:release --gc:orc --lib:lib") + # the BSDs are overwhelmed already, so only run this test on the other machines: + kochExecFold("Boot Nim ORC", "boot -d:release --gc:orc --lib:lib") proc testUnixInstall(cmdLineRest: string) = csource("-d:danger" & cmdLineRest) |