Fix for some compilers

This commit is contained in:
Sergio R. Caprile 2023-04-10 18:59:48 -03:00
parent 2fd2dff126
commit 92299c3079

View File

@ -6,13 +6,15 @@ CFLAGS_MONGOOSE +=
ifeq ($(OS),Windows_NT) ifeq ($(OS),Windows_NT)
# Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD # Windows settings. Assume MinGW compiler. To use VC: make CC=cl CFLAGS=/MD
PROG ?= example.exe # Use .exe suffix for the binary PROG ?= example.exe # Use .exe suffix for the binary
CC = gcc # Use MinGW gcc compiler CC = gcc # Use MinGW gcc compiler
CFLAGS += -lws2_32 # Link against Winsock library CFLAGS += -lws2_32 # Link against Winsock library
DELETE = cmd /C del /f /q /s # Command prompt command to delete files 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 else
# Mac, Linux # Mac, Linux
PROG ?= example PROG ?= example
CFLAGS += -lpthread # Link against POSIX threads library
DELETE = rm -rf DELETE = rm -rf
endif endif