From 452f9e81d0277b5d57c407fb90abe127823a45ed Mon Sep 17 00:00:00 2001 From: mratsim Date: Wed, 11 Apr 2018 16:37:57 +0200 Subject: [PATCH] Temporary: Don't use Clang on MacOS - https://github.com/status-im/nimbus/issues/9 --- nim.cfg | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nim.cfg diff --git a/nim.cfg b/nim.cfg new file mode 100644 index 000000000..678e7e818 --- /dev/null +++ b/nim.cfg @@ -0,0 +1,11 @@ +# TODO - https://github.com/status-im/nimbus/issues/9 +# Workaround for Rlp + TT-math: +# use GCC on MacOS + +@if macosx: + cc:"gcc" + gcc.exe:"/usr/local/bin/gcc-7" + gcc.linkerexe:"/usr/local/bin/gcc-7" + gcc.cpp.exe:"/usr/local/bin/g++-7" + gcc.cpp.linkerexe:"/usr/local/bin/g++-7" +@end