From 39d94297cfe8aa565f581098c446b81e74d33f1e Mon Sep 17 00:00:00 2001 From: Andy Davidoff Date: Fri, 24 Apr 2020 22:06:46 -0400 Subject: [PATCH] breakout arc branch --- README.md | 5 ++--- nimph.nimble | 7 ++++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index f0a79c8..9411a67 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,11 @@ # nimph -- `gc:refc` and `gc:arc` [![Build Status](https://travis-ci.org/disruptek/nimph.svg?branch=master)](https://travis-ci.org/disruptek/nimph) +- `gc:refc` [![Build Status](https://travis-ci.org/disruptek/nimph.svg?branch=master)](https://travis-ci.org/disruptek/nimph) +- `gc:arc` _proceed at your own risk!_ [![Build Status](https://travis-ci.org/disruptek/nimph.svg?branch=arc)](https://travis-ci.org/disruptek/nimph) nim package hierarchy manager from the future or: _How I Learned to Stop Worrying and Love the Search Path_ -## PSA: NIMPH IS CURRENTLY UNSAFE ON --gc:arc - ## Features - truly path-agnostic dependencies diff --git a/nimph.nimble b/nimph.nimble index 085c47a..228b316 100644 --- a/nimph.nimble +++ b/nimph.nimble @@ -30,9 +30,10 @@ proc execTest(test: string) = execCmd "nim c -r " & test execCmd "nim c -d:release -r " & test execCmd "nim c -d:danger -r " & test - when NimMajor >= 1 and NimMinor >= 1: - execCmd "nim c --gc:arc -r " & test - execCmd "nim c --gc:arc -d:danger -r " & test + when false: + when NimMajor >= 1 and NimMinor >= 1: + execCmd "nim c --gc:arc -r " & test + execCmd "nim c --gc:arc -d:danger -r " & test # cpp is broken # execCmd "nim cpp -r " & test