Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1diff --git a/config/nim.cfg b/config/nim.cfg 2index 3b964d124..850ed0ed9 100644 3--- a/config/nim.cfg 4+++ b/config/nim.cfg 5@@ -8,26 +8,12 @@ 6 # Environment variables can be accessed like so: 7 # gcc.path %= "$CC_PATH" 8 9-cc = gcc 10- 11 # additional options always passed to the compiler: 12 --parallel_build: "0" # 0 to auto-detect number of processors 13 14 hint[LineTooLong]=off 15 #hint[XDeclaredButNotUsed]=off 16 17-# Examples of how to setup a cross-compiler: 18- 19-# Cross-compiling for Raspberry Pi. 20-# (This compiler is available in gcc-arm-linux-gnueabihf package on Ubuntu) 21-arm.linux.gcc.exe = "arm-linux-gnueabihf-gcc" 22-arm.linux.gcc.linkerexe = "arm-linux-gnueabihf-gcc" 23- 24-# For OpenWRT, you will also need to adjust PATH to point to your toolchain. 25-mips.linux.gcc.exe = "mips-openwrt-linux-gcc" 26-mips.linux.gcc.linkerexe = "mips-openwrt-linux-gcc" 27- 28- 29 path="$lib/deprecated/core" 30 path="$lib/deprecated/pure" 31 path="$lib/pure/collections"