Skip to content

Commit

Permalink
Update: speed up by disable runtime checks
Browse files Browse the repository at this point in the history
  • Loading branch information
ssleert committed Jul 13, 2022
1 parent 558a5cb commit 117efec
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 3 deletions.
Binary file removed nitch
Binary file not shown.
2 changes: 1 addition & 1 deletion nitch.nimble
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Package

version = "0.1.0"
version = "0.1.1"
author = "sfome"
description = "System fetch in nim lang"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/assets/assets.nim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
const
programVersion*: string = "nitch - 0.1.0\n"
programVersion*: string = "nitch - 0.1.1\n"
helpMsg*: string = """
nitch - incredibly fast system fetch written in nim
Expand Down
19 changes: 18 additions & 1 deletion src/nitch.nim.cfg
Original file line number Diff line number Diff line change
@@ -1,2 +1,19 @@
--mm:none
-d:debug
--threads:off
--obj_checks:off
--field_checks:off
--range_checks:off
--bound_checks:off
--overflow_checks:off
--floatChecks:off
--assertions:off
--stackTrace:off
--lineTrace:off
--nanChecks:off
--infChecks:off
--linetrace:off
--debugger:off
--debuginfo:off
--styleCheck:off
--line_dir:off
-t:"-Ofast -flto -march=native -funroll-loops -pipe"

0 comments on commit 117efec

Please sign in to comment.