Minor fixes.
h3rald h3rald@h3rald.com
Wed, 10 Nov 2021 13:39:35 +0100
2 files changed,
15 insertions(+),
12 deletions(-)
M
README.md
→
README.md
@@ -1,6 +1,6 @@
-![nim](https://img.shields.io/badge/nim-powered-yellow.svg?link=https://nim-lang-org) -![release](https://img.shields.io/github/release/h3rald/hastyscribe/all.svg) -![build](https://img.shields.io/travis/h3rald/hastyscribe.svg) +[![Nimble](https://raw.githubusercontent.com/yglukhov/nimble-tag/master/nimble.png)](https://nimble.directory/pkg/hastyscribe) + +![release](https://img.shields.io/github/release/h3rald/hastyscribe.svg) ![license](https://img.shields.io/github/license/h3rald/hastyscribe.svg) # HastyScribe
M
src/hastyscribe.nim.cfg
→
src/hastyscribe.nim.cfg
@@ -1,9 +1,12 @@
-# https://blog.filippo.io/easy-windows-and-linux-cross-compilers-for-macos/ - -amd64.windows.gcc.path = "/usr/local/bin" -amd64.windows.gcc.exe = "x86_64-w64-mingw32-gcc" -amd64.windows.gcc.linkerexe = "x86_64-w64-mingw32-gcc" - -amd64.linux.gcc.path = "/usr/local/bin" -amd64.linux.gcc.exe = "x86_64-linux-musl-gcc" -amd64.linux.gcc.linkerexe = "x86_64-linux-musl-gcc" +# https://blog.filippo.io/easy-windows-and-linux-cross-compilers-for-macos/ + +amd64.windows.gcc.path = "/usr/local/bin" +amd64.windows.gcc.exe = "x86_64-w64-mingw32-gcc" +amd64.windows.gcc.linkerexe = "x86_64-w64-mingw32-gcc" + +amd64.linux.gcc.path = "/usr/local/bin" +amd64.linux.gcc.exe = "x86_64-linux-musl-gcc" +amd64.linux.gcc.linkerexe = "x86_64-linux-musl-gcc" + +--gc = "orc" +--opt = "size"