[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/10: gnu: swig: Fix FTBFS with GCC >= 6.
From: |
guix-commits |
Subject: |
05/10: gnu: swig: Fix FTBFS with GCC >= 6. |
Date: |
Wed, 16 Jan 2019 08:41:21 -0500 (EST) |
mbakke pushed a commit to branch wip-gcc7
in repository guix.
commit 471dc15d6db08313a6e11d750e55c60fb58b5391
Author: Marius Bakke <address@hidden>
Date: Sun Oct 7 13:46:32 2018 +0200
gnu: swig: Fix FTBFS with GCC >= 6.
* gnu/packages/swig.scm (swig)[arguments]: Add phase to remove -isystem flag
to GCC.
---
gnu/packages/swig.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/swig.scm b/gnu/packages/swig.scm
index 61f6a8c..b1b17fc 100644
--- a/gnu/packages/swig.scm
+++ b/gnu/packages/swig.scm
@@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2013, 2015, 2016 Ludovic Courtès <address@hidden>
;;; Copyright © 2015 Mark H Weaver <address@hidden>
+;;; Copyright © 2018 Marius Bakke <address@hidden>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -50,7 +51,14 @@
;; Required since Perl 5.26.0's removal of the current
;; working directory from @INC.
;; TODO Try removing this for later versions of SWIG.
- (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t)))))
+ (lambda _ (setenv "PERL_USE_UNSAFE_INC" "1") #t))
+ (add-before 'configure 'workaround-gcc-bug
+ (lambda _
+ ;; XXX: Don't add the -isystem flag, or GCCs #include_next
+ ;; won't be able to find <stdlib.h>.
+ (substitute* "configure"
+ (("-isystem ") "-I"))
+ #t)))))
(native-inputs `(("boost" ,boost)
("pcre" ,pcre "bin"))) ;for 'pcre-config'
(inputs `(;; Provide these to run the corresponding tests.
- branch wip-gcc7 created (now 2e48ea5), guix-commits, 2019/01/16
- 03/10: gnu: cmake: Try CPATH and C_INCLUDE_PATH when finding system libraries., guix-commits, 2019/01/16
- 04/10: gnu: cppunit: Update to 1.14.0., guix-commits, 2019/01/16
- 01/10: gnu: Use GCC 7 as the default compiler., guix-commits, 2019/01/16
- 02/10: gnu: python: Fix FTBFS with GCC >= 6., guix-commits, 2019/01/16
- 06/10: gnu: texlive-bin: Remove explicit C++11 flag., guix-commits, 2019/01/16
- 05/10: gnu: swig: Fix FTBFS with GCC >= 6.,
guix-commits <=
- 10/10: gnu: inkscape: Fix FTBFS with GCC >= 6., guix-commits, 2019/01/16
- 08/10: gnu: libevdev: Fix FTBFS with GCC7., guix-commits, 2019/01/16
- 09/10: gnu: hyperrogue: Fix FTBFS with GCC7., guix-commits, 2019/01/16
- 07/10: gnu: aspell: Fix FTBFS with GCC7., guix-commits, 2019/01/16