Your message dated Tue, 2 Jun 2020 16:58:54 -0500
with message-id <[email protected]>
and subject line Re: Bug#797792: src:r-base: incomplete FLIBS prevents to build
a package depending on r-base-core
has caused the Debian Bug report #797792,
regarding src:r-base: incomplete FLIBS prevents to build a package depending on
r-base-core
to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
797792: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=797792
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: src:r-base
Version: 3.2.2-1
Severity: normal
Tags: patch
Dear Maintainer,
I've noticed that r-cran-bayesm can't be built on ppc64el. It's because
some library paths are missing from the FLIBS variable defined in
/etc/R/Makeconf. The file /etc/R/Makeconf is coming from the package
r-base-core.
The attached patch adds the missing paths to FLIBS, only for ppc64el.
This way the package r-cran-bayesm could be built.
Thanks for considering the patch.
Erwan Prioul.
diff -Naur a/configure b/configure
--- a/configure 2015-08-13 16:47:29.565087740 +0200
+++ b/configure 2015-09-02 14:56:33.701599837 +0200
@@ -26516,6 +26516,13 @@
main_ldflags="-Wl,--export-dynamic"
STATICR1="-Wl,--whole-archive"
STATICR2="-Wl,--no-whole-archive"
+ ## FLIBS needs all the -L options on powerpc64le
+ ## (it enables the build of packages with a dependency on this one)
+ case "${host_cpu}" in
+ powerpc64le)
+ FLIBS_IN_SO="${FLIBS_IN_SO} $CLIBS"
+ ;;
+ esac
;;
mingw*)
SHLIB_EXT=".dll"
--- End Message ---
--- Begin Message ---
I am closing this old bug from 2015.
Erwan, if you're still at this address and still work on ppc64el, we had some
recent issues with long double support there so it may be good to reconnect.
Dirk
--
http://dirk.eddelbuettel.com | @eddelbuettel | [email protected]
--- End Message ---