From 493b66a133adafb6d6bd05caffe4d28cc6d166dd Mon Sep 17 00:00:00 2001 From: Sven Joachim Date: Fri, 31 Dec 2021 18:39:06 +0000 Subject: [PATCH] Don't add -m32/-m64 to CXXFLAGS Bug-Debian: https://bugs.debian.org/843922 Last-Update: 2016-11-11 Adding those is not only unnecessary, but actually breaks the build on many architectures, since g++ does not recognize them when built without multilib support. Gbp-Pq: Name cxxflags.patch --- src/Makefile | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/Makefile b/src/Makefile index fea597e..2a65943 100644 --- a/src/Makefile +++ b/src/Makefile @@ -333,9 +333,6 @@ ifeq ($(COMP),gcc) CXXFLAGS += -m$(bits) LDFLAGS += -m$(bits) endif - else - CXXFLAGS += -m$(bits) - LDFLAGS += -m$(bits) endif ifeq ($(arch),$(filter $(arch),armv7)) -- 2.30.2