mirror of
https://github.com/status-im/nimbus-eth1.git
synced 2025-01-13 22:04:52 +00:00
bd9d15d947
- isolate dependencies (both Git repos and ".nimble" dir) in "vendor" - ensure that everything is compiled using our version of Nim with something as simple as "make" - pull the latest changes with "make update" - re-create Nimble's package dir and re-build the Nim compiler automatically when needed - "env.sh" script that can be used to prefix any command that needs to use "nim" or "nimble" from our Nim repo - move the top level nim.cfg to nimbus/nim.cfg so it doesn't apply to deps - "fetch-dlls" `make` target for Windows to get precompiled Snappy, RocksDB and SQLite DLLs
21 lines
236 B
Plaintext
21 lines
236 B
Plaintext
/nimcache
|
|
|
|
# Executables shall be put in an ignored build/ directory
|
|
/build
|
|
|
|
# external packages
|
|
/vendor
|
|
|
|
# ntags/ctags output
|
|
/tags
|
|
|
|
# Ignore dynamic, static libs and libtool archive files
|
|
*.so
|
|
*.dylib
|
|
*.a
|
|
*.la
|
|
*.exe
|
|
*.dll
|
|
|
|
VMTests.md
|