Merge pull request #2151 from cesanta/multi-threaded

Fix for some compilers
This commit is contained in:
Sergey Lyubka 2023-04-12 10:02:27 +01:00 committed by GitHub
commit 20577021a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,13 +6,15 @@ CFLAGS_MONGOOSE +=
ifeq ($(OS),Windows_NT)
# Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD
PROG ?= example.exe # Use .exe suffix for the binary
CC = gcc # Use MinGW gcc compiler
CFLAGS += -lws2_32 # Link against Winsock library
DELETE = cmd /C del /f /q /s # Command prompt command to delete files
PROG ?= example.exe # Use .exe suffix for the binary
CC = gcc # Use MinGW gcc compiler
CFLAGS += -lws2_32 # Link against Winsock library
CFLAGS += -Wno-cast-function-type # Thread functions return void instead of void *
DELETE = cmd /C del /f /q /s # Command prompt command to delete files
else
# Mac, Linux
PROG ?= example
CFLAGS += -lpthread # Link against POSIX threads library
DELETE = rm -rf
endif