diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-02-23 11:34:39 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-02-23 11:34:39 +0100 |
commit | c5dbb0379fc431a01220224097f00323df6c9ced (patch) | |
tree | 9307332189b7873e0863ed82cac4f47d7013d217 /koch.nim | |
parent | 7ec187a8e11fa4a32aad9c722e49f5d3f0c27909 (diff) | |
download | Nim-c5dbb0379fc431a01220224097f00323df6c9ced.tar.gz |
disable compile-time FFI support
Diffstat (limited to 'koch.nim')
-rw-r--r-- | koch.nim | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/koch.nim b/koch.nim index a6c2443ce..3698db212 100644 --- a/koch.nim +++ b/koch.nim @@ -469,9 +469,7 @@ proc runCI(cmd: string) = ## build nimble early on to enable remainder to depend on it if needed kochExecFold("Build Nimble", "nimble") - when not defined(windows): - # pending https://github.com/Araq/libffi/pull/2 - # also, that PR works on win32 but not yet win64 + when false: execFold("nimble install -y libffi", "nimble install -y libffi") kochExecFold("boot -d:release -d:nimHasLibFFI", "boot -d:release -d:nimHasLibFFI") |