From 5706465bffb0019c6702d11eda259aea612e6114 Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Thu, 30 Jan 2020 02:17:13 -0800 Subject: [PATCH] makefile: Remove -fcommon for gcc/clang builds as discussed in #974 --- makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/makefile b/makefile index e87034f3..f705b18c 100644 --- a/makefile +++ b/makefile @@ -1166,9 +1166,6 @@ else ifneq (,$(findstring -fstrict-overflow,$(GCC_OPTIMIZERS))) CFLAGS_O += -fno-strict-overflow endif - ifneq (,$(findstring -fcommon,$(GCC_OPTIMIZERS))$(findstring -fno-common,$(GCC_OPTIMIZERS))) - CFLAGS_O += -fcommon - endif ifeq (,$(NO_LTO)) ifneq (,$(findstring -flto,$(GCC_OPTIMIZERS))) CFLAGS_O += -flto -fwhole-program