mirror of https://gitee.com/openkylin/vte2.91.git
!1 rv64g架构 编译报错 修复 增加nocheck
Merge pull request !1 from 范小气/openkylin/yangtze
This commit is contained in:
commit
0588f58d1c
|
@ -982,7 +982,7 @@ class App : Gtk.Application
|
|||
return value;
|
||||
}
|
||||
|
||||
public const OptionEntry[] entries = {
|
||||
const OptionEntry[] entries = {
|
||||
{ "audible-bell", 'a', 0, OptionArg.NONE, ref audible,
|
||||
"Use audible terminal bell", null },
|
||||
{ "command", 'c', 0, OptionArg.STRING, ref command,
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
vte2.91 (0.60.1-ok3) yangtze; urgency=medium
|
||||
|
||||
* Add rv64g nocheck and vala.app error repair
|
||||
|
||||
-- root <fanxiaoqi@smart-core.cn> Thu, 29 Feb 2024 11:34:13 +0000
|
||||
|
||||
vte2.91 (0.60.1-ok2) yangtze; urgency=medium
|
||||
|
||||
* update version info
|
||||
|
|
|
@ -153,3 +153,4 @@ libvte-2.91.so.0 libvte-2.91-0 #MINVER#
|
|||
vte_write_flags_get_type@Base 0
|
||||
(optional=template|regex)"_ZN.*@Base" 0
|
||||
(optional=template|regex)"_ZS.*@Base" 0
|
||||
_ZTVSt16_Sp_counted_baseILN9__gnu_cxx12_Lock_policyE1EE@Base 0.60.1-ok2
|
||||
|
|
|
@ -4,6 +4,11 @@ binaries := $(shell dh_listpackages)
|
|||
LIB_PKG := $(shell sed -rn 's/^Package:[[:space:]]*(libvte-[0-9\.-]+)[[:space:]]*$$/\1/p' debian/control)
|
||||
UDEB_PKG := $(LIB_PKG)-udeb
|
||||
|
||||
ifeq ($(DEB_HOST_ARCH), rv64g)
|
||||
export DEB_BUILD_OPTIONS=nocheck
|
||||
endif
|
||||
|
||||
|
||||
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
|
||||
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-O1 -Wl,-z,defs -Wl,--as-needed
|
||||
|
||||
|
|
Loading…
Reference in New Issue