-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Bioconda
Christopher Dunn edited this page Nov 11, 2019
·
2 revisions
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.
The nim-feedstock now comes from the conda-forge
"channel". It seems to work, but it still need improvement.
We are not yet able to "test" nim
as part of the nim-feedstock recipe because of how compilers are consumed in conda. Suggestions are appreciated.
We hard-code the expected name of the compiler in $PREFIX/config/nim.cfg
(where 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.
Not yet supported.
Not yet supported.
Intro
Getting Started
- Install
- Docs
- Curated Packages
- Editor Support
- Unofficial FAQ
- Nim for C programmers
- Nim for Python programmers
- Nim for TypeScript programmers
- Nim for D programmers
- Nim for Java programmers
- Nim for Haskell programmers
Developing
- Build
- Contribute
- Creating a release
- Compiler module reference
- Consts defined by the compiler
- Debugging the compiler
- GitHub Actions/Travis CI/Circle CI/Appveyor
- GitLab CI setup
- Standard library and the JavaScript backend
Misc