]> git.pld-linux.org Git - packages/crossmingw32-gcc.git/blob - gcc-isl0.15-2.patch
- filter out -fPIC from cflags, release 2
[packages/crossmingw32-gcc.git] / gcc-isl0.15-2.patch
1 List-Id: <gcc-patches.gcc.gnu.org>
2 List-Archive: <http://gcc.gnu.org/ml/gcc-patches/>
3 From: Bernhard Reutner-Fischer <rep dot dot dot nop at gmail dot com>
4 To: gcc-patches at gcc dot gnu dot org
5 Subject: [PATCH] gcc/: Fix building with isl-0.15.0; includes
6 Date: Fri, 17 Jul 2015 13:10:26 +0200
7 Message-Id: <1437131426-27008-1-git-send-email-rep.dot.nop@gmail.com>
8 In-Reply-To: <1436885112-2174-1-git-send-email-vapier at gentoo dot org>
9 References: <1436885112-2174-1-git-send-email-vapier@gentoo.org>
10
11 In addition to Mike's "[PATCH] gcc: fix building w/isl-0.15" in
12 https://gcc.gnu.org/ml/gcc-patches/2015-07/msg01162.html
13 I seem to also need a couple of more includes for isl-0.15.0:
14
15 2015-07-15  Bernhard Reutner-Fischer  <aldot@gcc.gnu.org>
16
17         * graphite-blocking.c, graphite-dependences.c,
18         graphite-interchange.c, graphite-isl-ast-to-gimple.c,
19         graphite-optimize-isl.c, graphite-poly.c,
20         graphite-scop-detection.c, graphite-sese-to-poly.c,
21         graphite.c: Add missing isl includes.
22 ---
23  gcc/graphite-blocking.c          |    1 +
24  gcc/graphite-dependences.c       |    1 +
25  gcc/graphite-interchange.c       |    1 +
26  gcc/graphite-isl-ast-to-gimple.c |    2 ++
27  gcc/graphite-optimize-isl.c      |    2 ++
28  gcc/graphite-poly.c              |    1 +
29  gcc/graphite-scop-detection.c    |    1 +
30  gcc/graphite-sese-to-poly.c      |    1 +
31  gcc/graphite.c                   |    1 +
32  9 files changed, 11 insertions(+)
33
34 diff --git a/gcc/graphite-interchange.c b/gcc/graphite-interchange.c
35 index aee51a8..bcf7f3b 100644
36 --- a/gcc/graphite-interchange.c
37 +++ b/gcc/graphite-interchange.c
38 @@ -24,6 +24,7 @@ along with GCC; see the file COPYING3.
39  #include "config.h"
40  
41  #ifdef HAVE_cloog
42 +#include <isl/constraint.h>
43  #include <isl/aff.h>
44  #include <isl/set.h>
45  #include <isl/map.h>
46 diff --git a/gcc/graphite-optimize-isl.c b/gcc/graphite-optimize-isl.c
47 index 388e25c..2b55783 100644
48 --- a/gcc/graphite-optimize-isl.c
49 +++ b/gcc/graphite-optimize-isl.c
50 @@ -21,7 +21,9 @@ along with GCC; see the file COPYING3.
51  #include "config.h"
52  
53  #ifdef HAVE_cloog
54 +#include <isl/constraint.h>
55  #include <isl/set.h>
56 +#include <isl/union_set.h>
57  #include <isl/map.h>
58  #include <isl/union_map.h>
59  #include <isl/schedule.h>
60 diff --git a/gcc/graphite-scop-detection.c b/gcc/graphite-scop-detection.c
61 index 47e0da0..22fdde3 100644
62 --- a/gcc/graphite-scop-detection.c
63 +++ b/gcc/graphite-scop-detection.c
64 @@ -22,6 +22,7 @@ along with GCC; see the file COPYING3.
65  #include "config.h"
66  
67  #ifdef HAVE_cloog
68 +#include <isl/constraint.h>
69  #include <isl/set.h>
70  #include <isl/map.h>
71  #include <isl/union_map.h>
72 diff --git a/gcc/graphite.c b/gcc/graphite.c
73 index a81ef6a..32f405a 100644
74 --- a/gcc/graphite.c
75 +++ b/gcc/graphite.c
76 @@ -35,6 +35,7 @@ along with GCC; see the file COPYING3.
77  #include "config.h"
78  
79  #ifdef HAVE_cloog
80 +#include <isl/constraint.h>
81  #include <isl/set.h>
82  #include <isl/map.h>
83  #include <isl/options.h>
84 -- 
85 1.7.10.4
86
This page took 0.223959 seconds and 3 git commands to generate.