1
0

sync with Debian

version: 14.3.0-7 (UNRELEASED)
commit: 39ea76304d57617bd92674237f1fc91c5c12ccd5
This commit is contained in:
2025-09-07 18:09:24 +03:00
parent 08abd3e546
commit e7e0fc078c
14 changed files with 2804 additions and 50 deletions

31
debian/rules2 vendored
View File

@@ -650,21 +650,11 @@ ifeq ($(DEB_TARGET_ARCH_OS),linux)
endif
endif
ifneq (,$(filter $(derivative),Ubuntu))
ifneq (,$(filter $(DEB_TARGET_ARCH), ppc64el))
ifneq (,$(filter $(distrelease),precise xenial bionic focal jammy noble oracular plucky))
# ieee default
else
CONFARGS += --with-long-double-format=ieee
endif
endif
else ifneq (,$(filter $(derivative),Debian))
ifneq (,$(filter $(DEB_TARGET_ARCH), ppc64el))
ifneq (,$(filter $(distrelease),jessie stretch buster bullseye bookworm trixie))
# ieee default
else
CONFARGS += --with-long-double-format=ieee
endif
ifneq (,$(filter $(DEB_TARGET_ARCH), ppc64el))
ifneq (,$(filter $(distrelease), $(ppc64el_ibm128_distreleases)))
# default to IBM double
else
CONFARGS += --with-long-double-format=ieee
endif
endif
@@ -698,6 +688,17 @@ ifneq (,$(filter $(DEB_TARGET_ARCH), amd64 i386))
endif
endif
ifneq (,$(filter $(derivative),Ubuntu))
ifeq ($(DEB_TARGET_ARCH),amd64)
# only passed in the environment by dpkg-buildpackage
ifeq ($(DEB_HOST_ARCH_VARIANT),amd64v3)
CONFARGS += --with-arch-64=x86-64-v3
else ifeq ($(DEB_HOST_ARCH_VARIANT),amd64v4)
CONFARGS += --with-arch-64=x86-64-v4
endif
endif
endif
ifeq ($(DEB_TARGET_ARCH),amd64)
CONFARGS += --with-abi=m64
endif