makefile: Set nim flag for threads off

For nim compiler options set --threads:off.

Signed-off-by: markoburcul <marko@status.im>
This commit is contained in:
markoburcul 2024-09-03 11:26:54 +02:00
parent 39f6c6e9e8
commit 580a153b60
No known key found for this signature in database
GPG Key ID: FC4CD2F9A040D54A
1 changed files with 1 additions and 1 deletions

View File

@ -738,7 +738,7 @@ $(NIM_WINDOWS_PREBUILT_DLLS):
unzip dlls.zip
nim_windows_launcher: | deps
$(ENV_SCRIPT) nim c -d:debug --outdir:./bin --passL:"-static-libgcc -Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive" src/nim_windows_launcher.nim
$(ENV_SCRIPT) nim c -d:debug --outdir:./bin --passL:"-static-libgcc -Wl,-Bstatic,--whole-archive -lwinpthread -Wl,--no-whole-archive" --threads:off src/nim_windows_launcher.nim
STATUS_CLIENT_EXE ?= pkg/Status.exe
STATUS_CLIENT_7Z ?= pkg/Status.7z