From: Sean Whitton Date: Mon, 28 Aug 2023 15:57:12 +0000 (+0100) Subject: Don't try to build with native compilation on riscv64 X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1~1^2~11 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=b7bc9c85f28e0b900a077b8e48fcc984b01cda29;p=emacs.git Don't try to build with native compilation on riscv64 Thanks to Aurelien Jarno and Bo YU. Closes: #1050653 --- diff --git a/debian/rules b/debian/rules index 33740fd3d7b..23bcd2d1125 100755 --- a/debian/rules +++ b/debian/rules @@ -281,7 +281,7 @@ confflags += --with-sound=alsa confflags += --without-gconf confflags += --with-mailutils # At the moment, there's no mips64el libgccjitN-dev -ifeq (,$(filter $(DEB_HOST_ARCH),mips64el s390x)) +ifeq (,$(filter $(DEB_HOST_ARCH),mips64el riscv64 s390x)) deb_native_compilation_enabled := 1 confflags += --with-native-compilation endif