diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2015-05-02 16:47:46 -0700 |
---|---|---|
committer | Bryan Hundven <bryanhundven@gmail.com> | 2015-05-02 16:47:46 -0700 |
commit | f9990ba71b1189b6ec668a6896e57d223df9b9f4 (patch) | |
tree | 43085f18d6f360f395ca5edfbe045d4bb69c8888 | |
parent | e88cdd6e27b64b3dcc6cba88cdd645c642279421 (diff) | |
parent | 7c41f73b7f87339985f851b4cdadcc31751e8c02 (diff) | |
download | crosstool-ng-f9990ba71b1189b6ec668a6896e57d223df9b9f4.tar.gz crosstool-ng-f9990ba71b1189b6ec668a6896e57d223df9b9f4.tar.bz2 crosstool-ng-f9990ba71b1189b6ec668a6896e57d223df9b9f4.zip |
Merge pull request #81 from bhundven/isl_0_14_depends_on_gcc_5_1_or_later
complibs: Update requirements for gcc-5.1
-rw-r--r-- | config/cc/gcc.in | 2 | ||||
-rw-r--r-- | config/companion_libs/isl.in | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/config/cc/gcc.in b/config/cc/gcc.in index e0dfc7ee..a91e1431 100644 --- a/config/cc/gcc.in +++ b/config/cc/gcc.in @@ -454,7 +454,7 @@ config CC_GCC_USE_GRAPHITE bool default y depends on CC_GCC_HAS_GRAPHITE - select CLOOG_NEEDED + select CLOOG_NEEDED if !CC_GCC_5_1_or_later select PPL_NEEDED if !CC_GCC_4_8_or_later select ISL_NEEDED if CC_GCC_4_8_or_later help diff --git a/config/companion_libs/isl.in b/config/companion_libs/isl.in index 92e659bd..93babe77 100644 --- a/config/companion_libs/isl.in +++ b/config/companion_libs/isl.in @@ -17,6 +17,7 @@ config ISL_V_0_12_2 config ISL_V_0_11_1 bool prompt "0.11.1" + depends on ! CC_GCC_5_1_or_later endchoice |