Skip to content
Christopher Dunn edited this page Nov 11, 2019 · 2 revisions

Bioconda

Installing nim

conda install nim

We've started with nim-1.0.2, but that can be updated at any time.

For now, we are using a source-distribution rather than the overnight pre-built.

Details

Linux

We hard-code the expected name of the compiler in $PREFIX/config/nim.cfg (which nim itself lives at $PREFIX/bin/nim):

gcc.exe = "x86_64-conda_cos6-linux-gnu-gcc"
gcc.cpp.exe = "x86_64-conda_cos6-linux-gnu-gcc"
gcc.linkerexe = "x86_64-conda_cos6-linux-gnu-gcc"
clang.exe = "x86_64-conda_cos6-linux-gnu-gcc"
clang.linkerexe = "x86_64-conda_cos6-linux-gnu-gcc"

This is problematic, but it works for now.

OSX

Not yet supported.

Windows

Not yet supported.

References

Clone this wiki locally