Skip to content

Commit fe61b9a

Browse files
committed
Removed support for x86 windows binary generation.
1 parent 225ff90 commit fe61b9a

File tree

2 files changed

+1
-12
lines changed

2 files changed

+1
-12
lines changed

markdown.nim

+1-4
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,7 @@ proc md*(s: string, f = 0, data: var TMDMetadata): string =
188188
when defined(macosx):
189189
{.link: "vendor/libmarkdown_macosx_x64.a".}
190190
when defined(windows):
191-
when defined(i386):
192-
{.link: "vendor/libmarkdown_windows_x86.a".}
193-
when defined(amd64):
194-
{.link: "vendor/libmarkdown_windows_x64.a".}
191+
{.link: "vendor/libmarkdown_windows_x64.a".}
195192
when defined(linux):
196193
when defined(arm):
197194
{.link: "vendor/libmarkdown_linux_arm.a".}

nakefile.nim

-8
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ const
99
linux_x86 = "--cpu:i386 --os:linux"
1010
linux_x64 = "--cpu:amd64 --os:linux"
1111
linux_arm = "--cpu:arm --os:linux"
12-
windows_x86 = "--cpu:i386 --os:windows"
1312
windows_x64 = "--cpu:amd64 --os:windows"
1413
macosx_x64 = ""
1514
parallel = "--parallelBuild:1 --verbosity:3"
@@ -20,9 +19,6 @@ const
2019
proc filename_for(os: string, arch: string): string =
2120
return "hastyscribe" & "_v" & version & "_" & os & "_" & arch & ".zip"
2221

23-
task "windows-x86-build", "Build HastyScribe for Windows (x86)":
24-
direshell compile, windows_x86, hs_file
25-
2622
task "windows-x64-build", "Build HastyScribe for Windows (x64)":
2723
direshell compile, windows_x64, hs_file
2824

@@ -39,10 +35,6 @@ task "macosx-x64-build", "Build HastyScribe for Mac OS X (x64)":
3935
direshell compile, macosx_x64, hs_file
4036

4137
task "release", "Release HastyScribe":
42-
echo "\n\n\n WINDOWS - x86:\n\n"
43-
runTask "windows-x86-build"
44-
direshell zip, filename_for("windows", "x86"), hs & ".exe"
45-
direshell "rm", hs & ".exe"
4638
echo "\n\n\n WINDOWS - x64:\n\n"
4739
runTask "windows-x64-build"
4840
direshell zip, filename_for("windows", "x64"), hs & ".exe"

0 commit comments

Comments
 (0)