[med-svn] [Git][med-team/ffindex][master] enable cross building
Michael R. Crusoe
gitlab at salsa.debian.org
Sun Mar 3 19:56:21 GMT 2019
Michael R. Crusoe pushed to branch master at Debian Med / ffindex
Commits:
5a7eeb53 by Michael R. Crusoe at 2019-03-03T19:51:53Z
enable cross building
- - - - -
4 changed files:
- debian/changelog
- debian/control
- + debian/patches/cross.patch
- debian/patches/series
Changes:
=====================================
debian/changelog
=====================================
@@ -1,3 +1,10 @@
+ffindex (0.9.9.9-2) UNRELEASED; urgency=medium
+
+ * Team upload.
+ * Add patch from helmutg@ to enable cross building; thanks! Closes: #923637.
+
+ -- Michael R. Crusoe <michael.crusoe at gmail.com> Sun, 03 Mar 2019 13:49:30 -0600
+
ffindex (0.9.9.9-1) unstable; urgency=medium
* New upstream version
=====================================
debian/control
=====================================
@@ -9,7 +9,8 @@ Build-Depends: debhelper (>= 12~),
libopenmpi-dev,
openmpi-bin,
cmake (>= 3.11),
- chrpath
+ chrpath,
+ pkg-config
Standards-Version: 4.3.0
Vcs-Browser: https://salsa.debian.org/med-team/ffindex
Vcs-Git: https://salsa.debian.org/med-team/ffindex.git
=====================================
debian/patches/cross.patch
=====================================
@@ -0,0 +1,42 @@
+Author: Helmut Grohne <helmutg at debian.org>
+Description: enable cross building
+
+ffindex fails to cross build from source, because it uses mpicc. mpicc
+is unfixable in terms of cross building, which is why it is being moved
+to pkg-config upstream. Rather than wrap your build in mpicc, you can
+compute the relevant flags using pkg-config just like any other library.
+
+--- ffindex-0.9.9.9.orig/src/Makefile
++++ ffindex-0.9.9.9/src/Makefile
+@@ -7,7 +7,10 @@
+ #CC=gcc
+ #CC=icc
+ #CC=clang
++PKG_CONFIG?=pkg-config
+ CFLAGS+=-std=c99 -O2 -g -fPIC -Wall -pedantic -D_GNU_SOURCE=1 -I. $(CPPFLAGS)
++CFLAGS_MPI=$(shell $(PKG_CONFIG) --cflags mpi)
++LDFLAGS_MPI=$(shell $(PKG_CONFIG) --libs mpi)
+ SOCURRENT=2
+ SOREVISION=0
+ SOAGE=2
+@@ -61,16 +64,16 @@
+ $(CC) $(CFLAGS) -o $@ ffindex_apply.o $(LDFLAGS) -L. -lffindex
+
+ ffindex_apply_mpi: ffindex_apply_mpi.o $(FFINDEX_LIBS)
+- mpicc $(CFLAGS) -DHAVE_MPI -o $@ ffindex_apply_mpi.o $(LDFLAGS) -L. -lffindex
++ $(CC) $(CFLAGS_MPI) $(LDFLAGS_MPI) $(CFLAGS) -DHAVE_MPI -o $@ ffindex_apply_mpi.o $(LDFLAGS) -L. -lffindex
+
+ ffindex_apply_mpi.o: ffindex_apply_mpi.c $(FFINDEX_HEADERS)
+- mpicc $(CFLAGS) -DHAVE_MPI -c ffindex_apply_mpi.c -o $@
++ $(CC) $(CFLAGS_MPI) $(CFLAGS) -DHAVE_MPI -c ffindex_apply_mpi.c -o $@
+
+ ffindex_apply_mpi_spawn: ffindex_apply_mpi_spawn.o $(FFINDEX_LIBS)
+- mpicc $(CFLAGS) -o $@ ffindex_apply_mpi_spawn.o $(LDFLAGS)
++ $(CC) $(CFLAGS_MPI) $(LDFLAGS_MPI) $(CFLAGS) -o $@ ffindex_apply_mpi_spawn.o $(LDFLAGS)
+
+ ffindex_apply_mpi_spawn.o: ffindex_apply_mpi_spawn.o $(FFINDEX_HEADERS)
+- mpicc $(CFLAGS) -c ffindex_apply_mpi_spawn.c -o $@
++ $(CC) $(CFLAGS_MPI) $(CFLAGS) -c ffindex_apply_mpi_spawn.c -o $@
+
+ ffindex_from_fasta: ffindex_from_fasta.o $(FFINDEX_LIBS)
+ $(CC) -o $@ ffindex_from_fasta.o $(LDFLAGS) $(STATIC)
=====================================
debian/patches/series
=====================================
@@ -1,2 +1,3 @@
Makefile.patch
basename.patch
+cross.patch
View it on GitLab: https://salsa.debian.org/med-team/ffindex/commit/5a7eeb53972e97ee264eb67d9df2f6c7089e4e14
--
View it on GitLab: https://salsa.debian.org/med-team/ffindex/commit/5a7eeb53972e97ee264eb67d9df2f6c7089e4e14
You're receiving this email because of your account on salsa.debian.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://alioth-lists.debian.net/pipermail/debian-med-commit/attachments/20190303/9f3688d4/attachment-0001.html>
More information about the debian-med-commit
mailing list