all repos — fae @ 26134ce74085888b341dfbea54df8980b72fbc48

A minuscule find and edit utility.

Added configuration file.
h3rald h3rald@h3rald.com
Sun, 24 May 2015 13:09:38 +0200
commit

26134ce74085888b341dfbea54df8980b72fbc48

parent

da7ed7453657b43bcb0023c26a5da7619494b4fc

2 files changed, 22 insertions(+), 2 deletions(-)

jump to
M far.nimfar.nim

@@ -213,5 +213,3 @@ displayMatch(contents, match[0], match[1])

matches = newSeq[StringBounds](0) echo "=== ", count, " files processed." - -
A far.nim.cfg

@@ -0,0 +1,22 @@

+define:release +gc:boehm + +# https://gist.github.com/Drakulix/9881160 +amd64.windows.gcc.path = "/usr/local/mingw/bin" +amd64.windows.gcc.exe = "x86_64-w64-mingw32-gcc" +amd64.windows.gcc.linkerexe = "x86_64-w64-mingw32-gcc" + +# https://gist.github.com/Drakulix/9881160 +i386.windows.gcc.path = "/usr/local/mingw/bin" +i386.windows.gcc.exe = "i686-w64-mingw32-gcc" +i386.windows.gcc.linkerexe = "i686-w64-mingw32-gcc" + +# http://crossgcc.rts-software.org/doku.php?id=compiling_for_linux +i386.linux.gcc.path = "/usr/local/gcc-4.8.1-for-linux32/bin" +i386.linux.gcc.exe = "i586-pc-linux-gcc" +i386.linux.gcc.linkerexe = "i586-pc-linux-gcc" + +# http://www.jaredwolff.com/toolchains/ +arm.linux.gcc.path = "/usr/local/arm-none-linux-gnueabi/bin" +arm.linux.gcc.exe = "arm-none-linux-gnueabi-gcc" +arm.linux.gcc.linkerexe = "arm-none-linux-gnueabi-gcc"