mirror of
https://github.com/DaveGamble/cJSON.git
synced 2023-08-10 21:13:26 +03:00
Makefile: Fix #263, use $(CC) instead of 'gcc' for detecting the version
This commit is contained in:
2
Makefile
2
Makefile
@@ -26,7 +26,7 @@ INSTALL ?= cp -a
|
|||||||
|
|
||||||
# validate gcc version for use fstack-protector-strong
|
# validate gcc version for use fstack-protector-strong
|
||||||
MIN_GCC_VERSION = "4.9"
|
MIN_GCC_VERSION = "4.9"
|
||||||
GCC_VERSION := "`gcc -dumpversion`"
|
GCC_VERSION := "`$(CC) -dumpversion`"
|
||||||
IS_GCC_ABOVE_MIN_VERSION := $(shell expr "$(GCC_VERSION)" ">=" "$(MIN_GCC_VERSION)")
|
IS_GCC_ABOVE_MIN_VERSION := $(shell expr "$(GCC_VERSION)" ">=" "$(MIN_GCC_VERSION)")
|
||||||
ifeq "$(IS_GCC_ABOVE_MIN_VERSION)" "1"
|
ifeq "$(IS_GCC_ABOVE_MIN_VERSION)" "1"
|
||||||
CFLAGS += -fstack-protector-strong
|
CFLAGS += -fstack-protector-strong
|
||||||
|
Reference in New Issue
Block a user