Nenhuma descrição

Andreas Rumpf 2a1f77cb18 Revert "Update uri.nim (#19148) [backport:1.0]" (#19280) 3 anos atrás
.github 554908df0c Create FUNDING.yml 5 anos atrás
bin 28394153ab 32 bit fixes (#10608) 5 anos atrás
build 51488766e7 empty.txt files: Trim trailing whitespace 9 anos atrás
changelogs 89b39ee8fe create changelog for v1.0.6 4 anos atrás
ci 97738a4f28 Testament pre parallel (#9137) 6 anos atrás
compiler f40c941580 fixes #18643 [backport:1.0] (#18678) 3 anos atrás
config 6d65e69b10 [backport] -d:danger should imply -d:release (#13336) 4 anos atrás
doc 561092003d manual.rst: updates [backport] (#14445) 4 anos atrás
examples e012eb1001 updated tests to be executed 6 anos atrás
icons 77ba8cb8bb Added icons support for Visual Studio compiler 8 anos atrás
lib 2a1f77cb18 Revert "Update uri.nim (#19148) [backport:1.0]" (#19280) 3 anos atrás
nimdoc 00408a4554 Removing the mention of using `discard` for block comments (#12837) [backport] 5 anos atrás
nimpretty fa7f5742d3 Fix spellings (#12277) [backport] 5 anos atrás
nimsuggest 234f4a27e1 Change severity of template instantiation message [backport] (#14526) 4 anos atrás
testament af2b7ff28f disable more packages 3 anos atrás
tests d5a7fb8ea0 there is no IndexDefect in 1.0 3 anos atrás
tinyc d2c7d391c8 TinyC upgrade (#6593) 7 anos atrás
tools b057bb6654 [tools] use the right parameter [backport:1.0] (#18957) 3 anos atrás
.gitattributes f89db4915f [ci skip] changelog conflicts are a thing of the past (#14098) 4 anos atrás
.gitignore 5a4122dc98 Ignore dochack.js (#11409) 5 anos atrás
.gitlab-ci.yml ef44c12a34 kick taint mode 6 anos atrás
.travis.yml 9d17d02734 attempt to add valgrind support to the CIs and testament (#12646) 5 anos atrás
appveyor.yml 459fbb9525 appveyor config: don't stop after testing failures; keep testing Nimble packages 5 anos atrás
azure-pipelines.yml 758a54ce23 Small optimization for the CI pipeline. (#15088) 4 anos atrás
build_all.bat 1d4916b481 Easier build instructions for windows - just run `build_all.bat`. (#12276) 5 anos atrás
build_all.sh 1e89e5bf9c Pass command line arguments from build_all.sh to build.sh (#11195) 5 anos atrás
changelog.md e5a3f30519 Fix buffer-overrun bug in net (#17728) [backport:1.0] 3 anos atrás
compiler.nimble 264627a657 Add nimsuggest to installDirs (#10035) 6 anos atrás
copying.txt a55f49a7b4 Years were updated. 6 anos atrás
koch.nim 98073624f7 update koch so the nightlies will be able to bundle Nimble 4 anos atrás
koch.nim.cfg 39839fda8a Rename *.nimrod.cfg to *.nim.cfg 10 anos atrás
readme.md f9d30dc1e5 Fixes stackoverflow links in readme (#12963) [backport] 5 anos atrás

readme.md

Nim Build Status

This repository contains the Nim compiler, Nim's stdlib, tools and documentation. For more information about Nim, including downloads and documentation for the latest release, check out Nim's website or bleeding edge docs.

Community

Join the IRC chat Join the Gitter chat Get help View Nim posts on Stack Overflow

  • The forum - the best place to ask questions and to discuss Nim.
  • #nim IRC Channel (Freenode) - a place to discuss Nim in real-time. Also where most development decisions get made.
  • Gitter - an additional place to discuss Nim in real-time. There is a bridge between Gitter and the IRC channel.
  • Telegram - an additional place to discuss Nim in real-time. There is the official Telegram channel.
  • Stack Overflow - a popular Q/A site for programming related topics that includes posts about Nim.
  • Github Wiki - Misc user-contributed content.

Compiling

The compiler currently officially supports the following platform and architecture combinations:

  • Windows (Windows XP or greater) - x86 and x86_64
  • Linux (most, if not all, distributions) - x86, x86_64, ppc64 and armv6l
  • Mac OS X (10.04 or greater) - x86, x86_64 and ppc64

More platforms are supported, however they are not tested regularly and they may not be as stable as the above-listed platforms.

Compiling the Nim compiler is quite straightforward if you follow these steps:

First, the C source of an older version of the Nim compiler is needed to bootstrap the latest version because the Nim compiler itself is written in the Nim programming language. Those C sources are available within the nim-lang/csources repository.

Next, to build from source you will need:

  • A C compiler such as gcc 3.x/later or an alternative such as clang, Visual C++ or Intel C++. It is recommended to use gcc 3.x or later.
  • Either git or wget to download the needed source repositories.
  • The build-essential package when using gcc on Ubuntu (and likely other distros as well).

Then, if you are on a *nix system or Windows, the following steps should compile Nim from source using gcc, git and the koch build tool.

Note: The following commands are for the development version of the compiler. For most users, installing the latest stable version is enough. Check out the installation instructions on the website to do so: https://nim-lang.org/install.html.

For package maintainers: see packaging guidelines.

First get Nim from github:

git clone https://github.com/nim-lang/Nim.git
cd Nim

Next run the appropriate build shell script for your platform:

  • build_all.sh (Linux, Mac)
  • build_all.bat (Windows)

Finally, once you have finished the build steps (on Windows, Mac or Linux) you should add the bin directory to your PATH.

Koch

koch is the build tool used to build various parts of Nim and to generate documentation and the website, among other things. The koch tool can also be used to run the Nim test suite.

Assuming that you added Nim's bin directory to your PATH, you may execute the tests using ./koch tests. The tests take a while to run, but you can run a subset of tests by specifying a category (for example ./koch tests cat async).

For more information on the koch build tool please see the documentation within the doc/koch.rst file.

Nimble

nimble is Nim's package manager. To learn more about it, see the nim-lang/nimble repository.

Contributors

This project exists thanks to all the people who contribute.

Contributing

Backers on Open Collective Sponsors on Open Collective Setup a bounty via Bountysource Donate Bitcoins Open Source Helpers

See detailed contributing guidelines. We welcome all contributions to Nim regardless of how small or large they are. Everything from spelling fixes to new modules to be included in the standard library are welcomed and appreciated. Before you start contributing, you should familiarize yourself with the following repository structure:

  • bin/, build/ - these directories are empty, but are used when Nim is built.
  • compiler/ - the compiler source code. Also includes nimfix, and plugins within compiler/nimfix and compiler/plugins respectively.
  • nimsuggest - the nimsuggest tool that previously lived in the nim-lang/nimsuggest repository.
  • config/ - the configuration for the compiler and documentation generator.
  • doc/ - the documentation files in reStructuredText format.
  • lib/ - the standard library, including:
    • pure/ - modules in the standard library written in pure Nim.
    • impure/ - modules in the standard library written in pure Nim with dependencies written in other languages.
    • wrappers/ - modules which wrap dependencies written in other languages.
  • tests/ - contains categorized tests for the compiler and standard library.
  • tools/ - the tools including niminst and nimweb (mostly invoked via koch).
  • koch.nim - tool used to bootstrap Nim, generate C sources, build the website, and generate the documentation.

If you are not familiar with making a pull request using GitHub and/or git, please read this guide.

Ideally you should make sure that all tests pass before submitting a pull request. However, if you are short on time, you can just run the tests specific to your changes by only running the corresponding categories of tests. Travis CI verifies that all tests pass before allowing the pull request to be accepted, so only running specific tests should be harmless. Integration tests should go in tests/untestable.

If you're looking for ways to contribute, please look at our issue tracker. There are always plenty of issues labelled Easy; these should be a good starting point for an initial contribution to Nim.

You can also help with the development of Nim by making donations. Donations can be made using:

If you have any questions feel free to submit a question on the Nim forum, or via IRC on the #nim channel.

Backers

Thank you to all our backers! [Become a backer]

Sponsors

Support this project by becoming a sponsor. Your logo will show up here with a link to your website. [Become a sponsor]

You can also see a list of all our sponsors/backers from various payment services on the sponsors page of our website.

License

The compiler and the standard library are licensed under the MIT license, except for some modules which explicitly state otherwise. As a result you may use any compatible license (essentially any license) for your own programs developed with Nim. You are explicitly permitted to develop commercial applications using Nim.

Please read the copying.txt file for more details.

Copyright © 2006-2019 Andreas Rumpf, all rights reserved.