From 529ec06abbc0aebac4ef719257d7b03efa643d64 Mon Sep 17 00:00:00 2001 From: Max Bruckner Date: Sun, 29 Apr 2018 09:20:08 +0200 Subject: [PATCH] Makefile: Fix #263, use $(CC) instead of 'gcc' for detecting the version --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b302a0..c0edd4a 100644 --- a/Makefile +++ b/Makefile @@ -26,7 +26,7 @@ INSTALL ?= cp -a # validate gcc version for use fstack-protector-strong 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)") ifeq "$(IS_GCC_ABOVE_MIN_VERSION)" "1" CFLAGS += -fstack-protector-strong -- GitLab