mirror of
https://github.com/cesanta/mongoose.git
synced 2024-11-27 20:59:00 +08:00
Fix for some compilers
This commit is contained in:
parent
2fd2dff126
commit
92299c3079
@ -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
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user