Skip to content
GitLab
Explore
Sign in
Register
Commits on Source (2)
Enable build on ppc64el
· d037ee05
Frédéric Bonnard
authored
Oct 27, 2019
and
Sascha Steinbiss
committed
Oct 27, 2019
d037ee05
Merge branch 'enable-ppc64el' into 'master'
· 785e3f14
Sascha Steinbiss
authored
Oct 27, 2019
Enable build on ppc64el See merge request
!1
785e3f14
Show whitespace changes
Inline
Side-by-side
debian/control
View file @
785e3f14
...
...
@@ -15,7 +15,7 @@ Vcs-Git: https://salsa.debian.org/med-team/libssw.git
Homepage: https://github.com/mengyao/Complete-Striped-Smith-Waterman-Library
Package: libssw0
Architecture: any-amd64 x32
Architecture: any-amd64 x32
ppc64el
Multi-Arch: same
Section: libs
Depends: ${shlibs:Depends},
...
...
@@ -34,7 +34,7 @@ Description: fast SIMD parallelized implementation of the Smith-Waterman algorit
the sub-optimal alignment score and location heuristically.
Package: libssw-dev
Architecture: any-amd64 x32
Architecture: any-amd64 x32
ppc64el
Multi-Arch: same
Section: libdevel
Depends: ${shlibs:Depends},
...
...
@@ -49,7 +49,7 @@ Description: Development headers and static libraries for libssw
algorithm at the instruction level.
Package: libssw-java
Architecture: any-amd64 x32
Architecture: any-amd64 x32
ppc64el
Section: java
Depends: ${java:Depends},
${shlibs:Depends},
...
...
@@ -62,7 +62,7 @@ Description: Java bindings for libssw
instruction level.
Package: ssw-align
Architecture: any-amd64 x32
Architecture: any-amd64 x32
ppc64el
Depends: ${shlibs:Depends},
${misc:Depends},
libssw0 (= ${binary:Version})
...
...
debian/rules
View file @
785e3f14
...
...
@@ -2,6 +2,10 @@
# DH_VERBOSE := 1
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow
ifeq ($(DEB_BUILD_ARCH), ppc64el)
export DEB_CFLAGS_MAINT_APPEND = -DNO_WARN_X86_INTRINSICS
export DEB_CXXFLAGS_MAINT_APPEND = -DNO_WARN_X86_INTRINSICS
endif
include /usr/share/dpkg/default.mk
...
...