[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/19: gnu: address@hidden: Fix limits.h include for cross builds.
From: |
guix-commits |
Subject: |
03/19: gnu: address@hidden: Fix limits.h include for cross builds. |
Date: |
Mon, 6 May 2019 05:19:34 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 0e293f75f1e41876a54f87c131d4a37408b70f56
Author: Carl Dong <address@hidden>
Date: Sun May 5 14:35:13 2019 +0000
gnu: address@hidden: Fix limits.h include for cross builds.
This allows us to supply gcc-9 as an optional argument to cross-gcc,
successfully constructing gcc-9-based cross-compilers.
* gnu/packages/gcc.scm (gcc-9)[source](patches): Add
"gcc-9-asan-fix-limits-include.patch".
* gnu/packages/patches/gcc-9-asan-fix-limits-include.patch: New file.
* gnu/local.mk (dist_patch_DATA): Add the patch.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/local.mk | 1 +
gnu/packages/gcc.scm | 1 +
gnu/packages/patches/gcc-9-asan-fix-limits-include.patch | 13 +++++++++++++
3 files changed, 15 insertions(+)
diff --git a/gnu/local.mk b/gnu/local.mk
index d67a2a5..eabf07e 100644
--- a/gnu/local.mk
+++ b/gnu/local.mk
@@ -817,6 +817,7 @@ dist_patch_DATA =
\
%D%/packages/patches/gcc-6-source-date-epoch-2.patch \
%D%/packages/patches/gcc-8-cross-environment-variables.patch \
%D%/packages/patches/gcc-8-strmov-store-file-names.patch \
+ %D%/packages/patches/gcc-9-asan-fix-limits-include.patch \
%D%/packages/patches/gcc-9-strmov-store-file-names.patch \
%D%/packages/patches/gd-CVE-2018-5711.patch \
%D%/packages/patches/gd-CVE-2018-1000222.patch \
diff --git a/gnu/packages/gcc.scm b/gnu/packages/gcc.scm
index eefce27..50c58c1 100644
--- a/gnu/packages/gcc.scm
+++ b/gnu/packages/gcc.scm
@@ -531,6 +531,7 @@ It also includes runtime support libraries for these
languages.")))
(base32
"1817nc2bqdc251k0lpc51cimna7v68xjrnvqzvc50q3ax4s6i9kr"))
(patches (search-patches "gcc-9-strmov-store-file-names.patch"
+ "gcc-9-asan-fix-limits-include.patch"
"gcc-5.0-libvtv-runpath.patch"))))))
;; Note: When changing the default gcc version, update
diff --git a/gnu/packages/patches/gcc-9-asan-fix-limits-include.patch
b/gnu/packages/patches/gcc-9-asan-fix-limits-include.patch
new file mode 100644
index 0000000..2f5ce7c
--- /dev/null
+++ b/gnu/packages/patches/gcc-9-asan-fix-limits-include.patch
@@ -0,0 +1,13 @@
+diff --git a/libsanitizer/asan/asan_linux.cc b/libsanitizer/asan/asan_linux.cc
+index d92d0596b7c..7926536a0c3 100644
+--- a/libsanitizer/asan/asan_linux.cc
++++ b/libsanitizer/asan/asan_linux.cc
+@@ -30,7 +30,7 @@
+ #include <sys/types.h>
+ #include <dlfcn.h>
+ #include <fcntl.h>
+-#include <limits.h>
++#include <linux/limits.h>
+ #include <pthread.h>
+ #include <stdio.h>
+ #include <unistd.h>
- branch master updated (654332f -> fc7d632), guix-commits, 2019/05/06
- 03/19: gnu: address@hidden: Fix limits.h include for cross builds.,
guix-commits <=
- 04/19: gnu: zimg: Fix license field to refer to license:wtfpl2., guix-commits, 2019/05/06
- 10/19: gnu: quickswitch-i3: Fix license field to use license:wtfpl2., guix-commits, 2019/05/06
- 06/19: gnu: envstore: Fix license field to refer to license:wtfpl2., guix-commits, 2019/05/06
- 19/19: gnu: Add emacs-miniedit., guix-commits, 2019/05/06
- 08/19: gnu: Use license: prefix in tmux.scm., guix-commits, 2019/05/06
- 05/19: gnu: Use license: prefix in shellutils.scm., guix-commits, 2019/05/06
- 12/19: gnu: mate-power-manager: Placate 'guix lint'., guix-commits, 2019/05/06
- 01/19: gnu: gcc: Add 9.1.0., guix-commits, 2019/05/06
- 14/19: gnu: Add emacs-evil-textobj-syntax., guix-commits, 2019/05/06
- 16/19: gnu: Add emacs-elisp-demos., guix-commits, 2019/05/06