re-upload

Signed-off-by: 周淦清 <zhouganqing@kylinos.cn>
This commit is contained in:
周淦清 2024-03-26 02:16:16 +00:00 committed by openkylin-cibot
parent 594297a7f4
commit 44473d8d1f
5 changed files with 1958 additions and 7 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
binutils (2.39.50.20221224-ok9) yangtze; urgency=medium
* Add support rv64g.
-- root <fanxiaoqi@smart-core.cn> Tue, 26 Mar 2024 01:09:22 +0000
binutils (2.39.50.20221224-ok8) yangtze; urgency=medium
* 更新版本号

4
debian/control vendored
View File

@ -617,7 +617,7 @@ Description: GNU binary utilities, for powerpc64-linux-gnu target (debug symbols
Package: binutils-riscv64-linux-gnu
Priority: optional
Architecture: riscv64 amd64 i386 x32 arm64 ppc64el
Architecture: riscv64 rv64g amd64 i386 x32 arm64 ppc64el
Multi-Arch: allowed
Depends: binutils-common (= ${binary:Version}),
${shlibs:Depends}, ${extraDepends}
@ -635,7 +635,7 @@ Description: GNU binary utilities, for riscv64-linux-gnu target
Package: binutils-riscv64-linux-gnu-dbg
Section: debug
Priority: optional
Architecture: riscv64 amd64 i386 x32 arm64 ppc64el
Architecture: riscv64 rv64g amd64 i386 x32 arm64 ppc64el
Multi-Arch: foreign
Depends: binutils-riscv64-linux-gnu (= ${binary:Version})
Description: GNU binary utilities, for riscv64-linux-gnu target (debug symbols)

1944
debian/patches/0001-re-upload.patch vendored Normal file

File diff suppressed because it is too large Load Diff

1
debian/patches/series vendored Normal file
View File

@ -0,0 +1 @@
0001-re-upload.patch

10
debian/rules vendored
View File

@ -119,7 +119,7 @@ install_binary = install -m 755 -s --strip-program="$(STRIP)"
NATIVE_ARCHS ?= amd64 i386 arm64 armhf armel ppc64el s390x
NATIVE_ARCHS += alpha arc hppa ia64 m68k powerpc ppc64 \
riscv64 sh4 sparc64 x32
riscv64 rv64g sh4 sparc64 x32
NATIVE_ARCHS += hurd-i386 kfreebsd-amd64 kfreebsd-i386
#NATIVE_ARCHS += nios2 or1k s390 sparc
@ -141,14 +141,14 @@ ifeq ($(DEB_SOURCE),binutils)
s390x ppc64el arm64 armhf armel \
alpha arc hppa m68k \
powerpc ppc64 sh4 sparc64 \
ia64 riscv64 \
ia64 riscv64 rv64g\
kfreebsd-amd64 kfreebsd-i386 hurd-i386
else ifeq ($(DEB_HOST_ARCH),arm64)
CROSS_ARCHS ?= amd64 armel armhf i386 ppc64el riscv64 s390x arc x32
CROSS_ARCHS ?= amd64 armel armhf i386 ppc64el riscv64 rv64g s390x arc x32
else ifeq ($(DEB_HOST_ARCH),ppc64)
CROSS_ARCHS ?= ppc64el
else ifeq ($(DEB_HOST_ARCH),ppc64el)
CROSS_ARCHS ?= powerpc ppc64 amd64 i386 x32 arm64 armel armhf riscv64 s390x
CROSS_ARCHS ?= powerpc ppc64 amd64 i386 x32 arm64 armel armhf riscv64 rv64g s390x
endif
else ifeq ($(DEB_SOURCE),binutils-ports)
CROSS_ARCHS ?= m68k sh4
@ -564,7 +564,7 @@ ifneq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
endif
#with_check := disabled for this upload
regression_archs = alpha amd64 armel armhf m68k riscv64 sh4 x32 hurd-i386
regression_archs = alpha amd64 armel armhf m68k riscv64 rv64g sh4 x32 hurd-i386
ifneq (,$(filter $(DEB_HOST_ARCH), $(regression_archs)))
ignore_regressions := regressions ignored on architecture $(DEB_HOST_ARCH)
endif