no more cc error on windows
This commit is contained in:
parent
d9e4dad0a8
commit
42b40e6fde
1 changed files with 2 additions and 2 deletions
|
@ -161,9 +161,9 @@ CFLAGS += -fshort-enums
|
||||||
CFLAGS += -fno-strict-aliasing
|
CFLAGS += -fno-strict-aliasing
|
||||||
# add color
|
# add color
|
||||||
ifeq ($(COLOR),true)
|
ifeq ($(COLOR),true)
|
||||||
ifeq ("$(shell echo "int main(){}" | $(CC) -fdiagnostics-color -x c - -o /dev/null 2>&1)", "")
|
ifeq ("$(echo "int main(){}" | $(CC) -fdiagnostics-color -x c - -o /dev/null 2>&1)", "")
|
||||||
CFLAGS+= -fdiagnostics-color
|
CFLAGS+= -fdiagnostics-color
|
||||||
else ifeq ("$(shell echo "int main(){}" | $(CC) -fcolor-diagnostics -x c - -o /dev/null 2>&1)", "")
|
else ifeq ("$(echo "int main(){}" | $(CC) -fcolor-diagnostics -x c - -o /dev/null 2>&1)", "")
|
||||||
CFLAGS+= -fcolor-diagnostics
|
CFLAGS+= -fcolor-diagnostics
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue