Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Eric Sandall (232f450421a8907ca2906008f2a9db29bb1c2a35)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Eric Sandall <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Eric Sandall (232f450421a8907ca2906008f2a9db29bb1c2a35)
  • Date: Thu, 1 Oct 2020 16:08:55 +0000

GIT changes to master grimoire by Eric Sandall <sandalle AT sourcemage.org>:

gnu/gcc/DEPENDS | 6 +++---
gnu/gcc/HISTORY | 7 +++++++
2 files changed, 10 insertions(+), 3 deletions(-)

New commits:
commit 232f450421a8907ca2906008f2a9db29bb1c2a35
Author: Eric Sandall <sandalle AT sourcemage.org>
Commit: Eric Sandall <sandalle AT sourcemage.org>

gcc: Add paths to libmpc (/usr), gmp (/), and mpfr (/)

Otherwise I get this error:
configure: error: Building GCC requires GMP 4.2+, MPFR 3.1.0+ and MPC
0.8.0+.
Try the --with-gmp, --with-mpfr and/or --with-mpc options to specify
their locations. Source code for these libraries can be found at
I didn't test which one is the one failing, added all three that gcc told
me to.

diff --git a/gnu/gcc/DEPENDS b/gnu/gcc/DEPENDS
index 4f3087e..2ef94a3 100755
--- a/gnu/gcc/DEPENDS
+++ b/gnu/gcc/DEPENDS
@@ -2,9 +2,9 @@
. "$GRIMOIRE/libcompat" &&
depends perl &&
depends diffutils &&
-depends gmp &&
-depends libmpc &&
-depends mpfr &&
+depends gmp "--with-gmp=${INSTALL_ROOT}/" &&
+depends libmpc "--with-mpc=${INSTALL_ROOT}/usr" &&
+depends mpfr "--with-mpfr=${INSTALL_ROOT}/" &&
depends smgl-fhs &&
depends smgl-archspecs &&
depends zlib "--with-system-zlib" &&
diff --git a/gnu/gcc/HISTORY b/gnu/gcc/HISTORY
index 86bbd46..93a43b9 100644
--- a/gnu/gcc/HISTORY
+++ b/gnu/gcc/HISTORY
@@ -1,3 +1,10 @@
+2020-09-29 Eric Sandall <sandalle AT sourcemage.org>
+ * DEPENDS: Add paths to libmpc (/usr), gmp (/), and mpfr (/)
otherwise I get this error:
+ configure: error: Building GCC requires GMP 4.2+, MPFR 3.1.0+
and MPC 0.8.0+.
+ Try the --with-gmp, --with-mpfr and/or --with-mpc options to
specify
+ their locations. Source code for these libraries can be
found at
+ I didn't test which one is the one failing, added all three that
gcc told me to.
+
2020-09-03 Thomas Orgis <sobukus AT sourcemage.org>
* PRE_BUILD: drop .la files from installation
* DETAILS: ++PATCHLEVEL



  • [SM-Commit] GIT changes to master grimoire by Eric Sandall (232f450421a8907ca2906008f2a9db29bb1c2a35), Eric Sandall, 10/01/2020

Archive powered by MHonArc 2.6.24.

Top of Page