Skip to content

Commit

Permalink
trying to fix compile error on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Nimaoth committed Mar 9, 2024
1 parent ad4c3e3 commit 4675456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion absytree.nimble
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ proc getCommandLineParams(): string =
return commandLineParams[3..^1].join(" ")

task buildDesktop, "Build the desktop version":
selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi {getCommandLineParams()} ./src/absytree.nim"
selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi --passC:-std=gnu11 {getCommandLineParams()} ./src/absytree.nim"
# selfExec fmt"c --passL:advapi32.lib -o:ast{exe} -d:exposeScriptingApi {getCommandLineParams()} ./src/absytree.nim"
# selfExec fmt"c -o:ast{exe} -d:exposeScriptingApi --objChecks:off --fieldChecks:off --rangeChecks:off --boundChecks:off --overflowChecks:off --floatChecks:off --nanChecks:off --infChecks:off {getCommandLineParams()} ./src/absytree.nim"

Expand Down

0 comments on commit 4675456

Please sign in to comment.