blob: 1af5d26ac07c581449a4d172e73999181375afb9 [file] [log] [blame]
Brad Bishopd7bf8c12018-02-25 22:55:05 -05001From d13b918a3ff8b0ebfd1e7b18b198b4b45841d720 Mon Sep 17 00:00:00 2001
2From: Andrea Galbusera <gizero@gmail.com>
3Date: Fri, 31 Jul 2015 16:42:08 +0200
4Subject: [PATCH] Makefile: remove hardcoding of CC
5
6* upgrade previous patch to avoid wiping CFLAGS. This fixes build on arm
7platforms which previously caused and issue due to -fPIC being lost
8
9Signed-off-by: Andrea Galbusera <gizero@gmail.com>
10---
11 Makefile | 5 -----
12 1 file changed, 5 deletions(-)
13
Brad Bishopd7bf8c12018-02-25 22:55:05 -050014--- a/Makefile
15+++ b/Makefile
Brad Bishope42b3e32020-01-15 22:08:42 -050016@@ -35,12 +35,6 @@ define REDIS_TEST_CONFIG
Brad Bishopd7bf8c12018-02-25 22:55:05 -050017 endef
18 export REDIS_TEST_CONFIG
19
20-# Fallback to gcc when $CC is not in $PATH.
Brad Bishope42b3e32020-01-15 22:08:42 -050021-CC:=$(shell sh -c 'type $${CC%% *} >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
22-CXX:=$(shell sh -c 'type $${CXX%% *} >/dev/null 2>/dev/null && echo $(CXX) || echo g++')
Brad Bishopd7bf8c12018-02-25 22:55:05 -050023-OPTIMIZATION?=-O3
24-WARNINGS=-Wall -W -Wstrict-prototypes -Wwrite-strings
Brad Bishope42b3e32020-01-15 22:08:42 -050025-DEBUG_FLAGS?= -g -ggdb
26 REAL_CFLAGS=$(OPTIMIZATION) -fPIC $(CFLAGS) $(WARNINGS) $(DEBUG_FLAGS)
27 REAL_LDFLAGS=$(LDFLAGS)
Brad Bishopd7bf8c12018-02-25 22:55:05 -050028