Skip to content
Merged
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
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,9 @@ LDFLAGS += -lcrypto
# $(OS) is typically 'Windows_NT' on Windows and empty or 'Linux' on Linux
ifeq ($(OS),Windows_NT)
# Windows-specific linker flags
LDFLAGS += -lws2_32 -lcrypt32
LDFLAGS += -static-libstdc++ -static -lcrypto -lws2_32 -lcrypt32
else
# Unix/Linux-specific linker flags
# You can add Unix-specific flags here if needed
# For example, linking against pthread:
# LDFLAGS += -lpthread
endif

Expand Down
Loading