From: Rob Browning Date: Sun, 18 Sep 2022 19:08:38 +0000 (-0500) Subject: debian/rules: don't set debian CFLAGS to -O0 on arm64 anymore X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~95 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=0c298755275bef1b9f37c42f88435d80cd10b912;p=emacs.git debian/rules: don't set debian CFLAGS to -O0 on arm64 anymore It looks like this may be fixed now. Let's see. --- diff --git a/debian/rules b/debian/rules index b62dc8426ab..604a740faf2 100755 --- a/debian/rules +++ b/debian/rules @@ -87,11 +87,6 @@ endif deb_host_multiarch := $(shell dpkg-architecture -qDEB_HOST_MULTIARCH) -# Without this, the build dies in marker.c when trying to create c-by.el -ifeq ($(DEB_HOST_ARCH),arm64) - export DEB_CFLAGS_MAINT_APPEND := -O0 -endif - CFLAGS = $(shell dpkg-buildflags --get CFLAGS) CFLAGS += -Wall LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS)