all repos — hastyscribe @ fe61b9a88233c76c6500f0294d46b1a04dcb761d

A professional markdown compiler.

Removed support for x86 windows binary generation.
h3rald h3rald@h3rald.com
Sat, 18 Feb 2017 15:45:34 +0100
commit

fe61b9a88233c76c6500f0294d46b1a04dcb761d

parent

225ff90c439fc40b2b8c2aebdd030a1399197dfc

2 files changed, 1 insertions(+), 12 deletions(-)

jump to
M markdown.nimmarkdown.nim

@@ -188,10 +188,7 @@

when defined(macosx): {.link: "vendor/libmarkdown_macosx_x64.a".} when defined(windows): - when defined(i386): - {.link: "vendor/libmarkdown_windows_x86.a".} - when defined(amd64): - {.link: "vendor/libmarkdown_windows_x64.a".} + {.link: "vendor/libmarkdown_windows_x64.a".} when defined(linux): when defined(arm): {.link: "vendor/libmarkdown_linux_arm.a".}
M nakefile.nimnakefile.nim

@@ -9,7 +9,6 @@ compile = "nim c -d:release"

linux_x86 = "--cpu:i386 --os:linux" linux_x64 = "--cpu:amd64 --os:linux" linux_arm = "--cpu:arm --os:linux" - windows_x86 = "--cpu:i386 --os:windows" windows_x64 = "--cpu:amd64 --os:windows" macosx_x64 = "" parallel = "--parallelBuild:1 --verbosity:3"

@@ -19,9 +18,6 @@ zip = "zip -X"

proc filename_for(os: string, arch: string): string = return "hastyscribe" & "_v" & version & "_" & os & "_" & arch & ".zip" - -task "windows-x86-build", "Build HastyScribe for Windows (x86)": - direshell compile, windows_x86, hs_file task "windows-x64-build", "Build HastyScribe for Windows (x64)": direshell compile, windows_x64, hs_file

@@ -39,10 +35,6 @@ task "macosx-x64-build", "Build HastyScribe for Mac OS X (x64)":

direshell compile, macosx_x64, hs_file task "release", "Release HastyScribe": - echo "\n\n\n WINDOWS - x86:\n\n" - runTask "windows-x86-build" - direshell zip, filename_for("windows", "x86"), hs & ".exe" - direshell "rm", hs & ".exe" echo "\n\n\n WINDOWS - x64:\n\n" runTask "windows-x64-build" direshell zip, filename_for("windows", "x64"), hs & ".exe"