2013-05-03 22:08:34 +00:00
|
|
|
# ISL options
|
|
|
|
|
2017-01-11 01:17:59 +00:00
|
|
|
# GCC 4.8 supports ISL 0.10 to 0.14
|
|
|
|
# GCC 4.9 supports ISL 0.10 to 0.15
|
|
|
|
# GCC 5 supports ISL 0.12 to 0.16
|
|
|
|
# GCC 6 supports ISL 0.14 to 0.16
|
2013-05-03 22:08:34 +00:00
|
|
|
choice
|
|
|
|
bool
|
|
|
|
prompt "ISL version"
|
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_BELOW
|
|
|
|
|
2016-12-23 21:32:54 +00:00
|
|
|
config ISL_V_0_16_1
|
|
|
|
bool
|
|
|
|
prompt "0.16.1"
|
2017-01-11 01:17:59 +00:00
|
|
|
depends on CC_GCC_5_or_later
|
2016-12-23 21:32:54 +00:00
|
|
|
select ISL_V_0_16_or_later
|
|
|
|
|
2017-01-11 01:17:59 +00:00
|
|
|
config ISL_V_0_15
|
|
|
|
bool
|
|
|
|
prompt "0.15"
|
|
|
|
select ISL_V_0_15_or_later
|
|
|
|
|
2015-04-25 20:11:32 +00:00
|
|
|
config ISL_V_0_14
|
|
|
|
bool
|
|
|
|
prompt "0.14"
|
2015-08-29 10:40:46 +00:00
|
|
|
select ISL_V_0_14_or_later
|
2015-04-25 20:11:32 +00:00
|
|
|
|
2014-02-17 06:11:45 +00:00
|
|
|
config ISL_V_0_12_2
|
|
|
|
bool
|
|
|
|
prompt "0.12.2"
|
2017-01-11 01:17:59 +00:00
|
|
|
depends on !CC_GCC_6_or_later
|
2015-08-29 10:40:46 +00:00
|
|
|
select ISL_V_0_12_or_later
|
2014-02-17 06:11:45 +00:00
|
|
|
|
2013-05-03 22:08:34 +00:00
|
|
|
config ISL_V_0_11_1
|
|
|
|
bool
|
|
|
|
prompt "0.11.1"
|
2017-01-11 01:17:59 +00:00
|
|
|
depends on !CC_GCC_4_9_or_later
|
2013-05-03 22:08:34 +00:00
|
|
|
|
|
|
|
endchoice
|
|
|
|
|
2016-12-23 21:32:54 +00:00
|
|
|
config ISL_V_0_16_or_later
|
2017-01-11 01:17:59 +00:00
|
|
|
bool
|
|
|
|
select ISL_V_0_15_or_later
|
|
|
|
|
|
|
|
config ISL_V_0_15_or_later
|
2016-12-23 21:32:54 +00:00
|
|
|
bool
|
|
|
|
select ISL_V_0_14_or_later
|
|
|
|
|
2015-08-29 10:40:46 +00:00
|
|
|
config ISL_V_0_14_or_later
|
|
|
|
bool
|
|
|
|
select ISL_V_0_12_or_later
|
|
|
|
|
|
|
|
config ISL_V_0_12_or_later
|
|
|
|
bool
|
|
|
|
|
2013-05-03 22:08:34 +00:00
|
|
|
config ISL_VERSION
|
|
|
|
string
|
|
|
|
# Don't remove next line
|
|
|
|
# CT_INSERT_VERSION_STRING_BELOW
|
2016-12-23 21:32:54 +00:00
|
|
|
default "0.16.1" if ISL_V_0_16_1
|
2017-01-11 01:17:59 +00:00
|
|
|
default "0.15" if ISL_V_0_15
|
2015-04-25 20:11:32 +00:00
|
|
|
default "0.14" if ISL_V_0_14
|
2014-02-17 06:11:45 +00:00
|
|
|
default "0.12.2" if ISL_V_0_12_2
|
2013-05-03 22:08:34 +00:00
|
|
|
default "0.11.1" if ISL_V_0_11_1
|