Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

windows: build with dynamic linking #7

Merged
merged 2 commits into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ endif
ifeq "$(OS)" "windows"

CFLAGS+=`pkg-config hidapi --cflags`
LIBS+= -lhidapi -lsetupapi -Wl,--enable-auto-import -static-libgcc -static-libstdc++
LIBS+= -lhidapi -lsetupapi -Wl,--enable-auto-import
EXE=.exe

endif
Expand Down
2 changes: 1 addition & 1 deletion sonixflasher.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
#define RETRY_DELAY_MS 100

#define PROJECT_NAME "sonixflasher"
#define PROJECT_VER "2.0.5"
#define PROJECT_VER "2.0.6"

uint16_t BLANK_CHECKSUM = 0x0000;
uint16_t CS0 = CS0_0;
Expand Down
Loading