summaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
Diffstat (limited to 'config')
-rw-r--r--config/backend.in4
-rw-r--r--config/binutils/binutils.in10
-rw-r--r--config/companion_libs/cloog.in10
-rw-r--r--config/companion_libs/isl.in23
-rw-r--r--config/debug/gdb.in6
-rw-r--r--config/kernel/linux.in32
-rw-r--r--config/libc/glibc.in22
-rw-r--r--config/libc/musl.in4
8 files changed, 92 insertions, 19 deletions
diff --git a/config/backend.in b/config/backend.in
index 3a3e1d6..acf2580 100644
--- a/config/backend.in
+++ b/config/backend.in
@@ -8,6 +8,8 @@ config BACKEND
bool
default y if IS_A_BACKEND = "y" || IS_A_BACKEND = "Y"
+if BACKEND
+
config BACKEND_ARCH
string
option env="CT_BACKEND_ARCH"
@@ -19,3 +21,5 @@ config BACKEND_KERNEL
config BACKEND_LIBC
string
option env="CT_BACKEND_LIBC"
+
+endif #if BACKEND
diff --git a/config/binutils/binutils.in b/config/binutils/binutils.in
index 5ef69b5..821e606 100644
--- a/config/binutils/binutils.in
+++ b/config/binutils/binutils.in
@@ -25,6 +25,11 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config BINUTILS_V_2_25_1
+ bool
+ prompt "2.25.1"
+ select BINUTILS_2_25_1_or_later
+
config BINUTILS_LINARO_V_2_25
bool
prompt "linaro-2.25.0-2015.01-2"
@@ -111,6 +116,7 @@ config BINUTILS_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "2.25.1" if BINUTILS_V_2_25_1
default "linaro-2.25.0-2015.01-2" if BINUTILS_LINARO_V_2_25
default "2.25" if BINUTILS_V_2_25
default "linaro-2.24.0-2014.11-2" if BINUTILS_LINARO_V_2_24
@@ -125,6 +131,10 @@ config BINUTILS_VERSION
default "2.18a" if BINUTILS_V_2_18a
default "custom" if BINUTILS_CUSTOM
+config BINUTILS_2_25_1_or_later
+ bool
+ select BINUTILS_2_25_or_later
+
config BINUTILS_2_25_or_later
bool
select BINUTILS_2_24_or_later
diff --git a/config/companion_libs/cloog.in b/config/companion_libs/cloog.in
index c42d7df..6fb522a 100644
--- a/config/companion_libs/cloog.in
+++ b/config/companion_libs/cloog.in
@@ -9,6 +9,11 @@ if ISL
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config CLOOG_V_0_18_4
+ bool
+ prompt "0.18.4"
+ select CLOOG_0_18_4_or_later
+
config CLOOG_V_0_18_1
bool
prompt "0.18.1"
@@ -36,10 +41,15 @@ config CLOOG_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "0.18.4" if CLOOG_V_0_18_4
default "0.18.1" if CLOOG_V_0_18_1
default "0.18.0" if CLOOG_V_0_18_0
default "0.15.11" if CLOOG_V_0_15_11
+config CLOOG_0_18_4_or_later
+ bool
+ select CLOOG_0_18_or_later
+
config CLOOG_0_18_or_later
bool
diff --git a/config/companion_libs/isl.in b/config/companion_libs/isl.in
index 93babe7..4f6ee36 100644
--- a/config/companion_libs/isl.in
+++ b/config/companion_libs/isl.in
@@ -6,25 +6,48 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config ISL_V_0_15
+ bool
+ prompt "0.15"
+ depends on CLOOG_0_18_4_or_later
+ select ISL_V_0_15_or_later
+
config ISL_V_0_14
bool
prompt "0.14"
+ depends on CLOOG_0_18_4_or_later
+ select ISL_V_0_14_or_later
config ISL_V_0_12_2
bool
prompt "0.12.2"
+ depends on ! CLOOG_0_18_4_or_later
+ select ISL_V_0_12_or_later
config ISL_V_0_11_1
bool
prompt "0.11.1"
+ depends on ! CLOOG_0_18_4_or_later
depends on ! CC_GCC_5_1_or_later
endchoice
+config ISL_V_0_15_or_later
+ bool
+ select ISL_V_0_14_or_later
+
+config ISL_V_0_14_or_later
+ bool
+ select ISL_V_0_12_or_later
+
+config ISL_V_0_12_or_later
+ bool
+
config ISL_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "0.15" if ISL_V_0_15
default "0.14" if ISL_V_0_14
default "0.12.2" if ISL_V_0_12_2
default "0.11.1" if ISL_V_0_11_1
diff --git a/config/debug/gdb.in b/config/debug/gdb.in
index 2d92251..7010259 100644
--- a/config/debug/gdb.in
+++ b/config/debug/gdb.in
@@ -33,6 +33,11 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config GDB_V_7_10
+ bool
+ prompt "7.10"
+ select GDB_7_2_or_later
+
config GDB_V_7_9_1
bool
prompt "7.9.1"
@@ -190,6 +195,7 @@ config GDB_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "7.10" if GDB_V_7_10
default "7.9.1" if GDB_V_7_9_1
default "7.9" if GDB_V_7_9
default "7.8.2" if GDB_V_7_8_2
diff --git a/config/kernel/linux.in b/config/kernel/linux.in
index 8ece8a4..c896409 100644
--- a/config/kernel/linux.in
+++ b/config/kernel/linux.in
@@ -27,29 +27,29 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
-config KERNEL_V_4_1
+config KERNEL_V_4_2
bool
- prompt "4.1.4 (stable)"
+ prompt "4.2 (mainline)"
-config KERNEL_V_4_0
+config KERNEL_V_4_1
bool
- prompt "4.0.9 (EOL)"
+ prompt "4.1.6 (stable)"
config KERNEL_V_3_18
bool
- prompt "3.18.19"
+ prompt "3.18.20"
config KERNEL_V_3_14
bool
- prompt "3.14.49"
+ prompt "3.14.51"
config KERNEL_V_3_12
bool
- prompt "3.12.46"
+ prompt "3.12.47"
config KERNEL_V_3_10
bool
- prompt "3.10.85"
+ prompt "3.10.87"
config KERNEL_V_3_4
bool
@@ -57,7 +57,7 @@ config KERNEL_V_3_4
config KERNEL_V_3_2
bool
- prompt "3.2.70"
+ prompt "3.2.71"
config KERNEL_V_2_6_32
bool
@@ -84,14 +84,14 @@ config KERNEL_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
- default "4.1.4" if KERNEL_V_4_1
- default "4.0.9" if KERNEL_V_4_0
- default "3.18.19" if KERNEL_V_3_18
- default "3.14.49" if KERNEL_V_3_14
- default "3.12.46" if KERNEL_V_3_12
- default "3.10.85" if KERNEL_V_3_10
+ default "4.2" if KERNEL_V_4_2
+ default "4.1.6" if KERNEL_V_4_1
+ default "3.18.20" if KERNEL_V_3_18
+ default "3.14.51" if KERNEL_V_3_14
+ default "3.12.47" if KERNEL_V_3_12
+ default "3.10.87" if KERNEL_V_3_10
default "3.4.108" if KERNEL_V_3_4
- default "3.2.70" if KERNEL_V_3_2
+ default "3.2.71" if KERNEL_V_3_2
default "2.6.32.67" if KERNEL_V_2_6_32
default "custom" if KERNEL_LINUX_CUSTOM
diff --git a/config/libc/glibc.in b/config/libc/glibc.in
index fbc82d5..dee6748 100644
--- a/config/libc/glibc.in
+++ b/config/libc/glibc.in
@@ -34,10 +34,15 @@ choice
# Don't remove next line
# CT_INSERT_VERSION_BELOW
+config LIBC_GLIBC_V_2_22
+ bool
+ prompt "2.22"
+ select LIBC_GLIBC_2_21_or_later
+
config LIBC_GLIBC_V_2_21
bool
prompt "2.21"
- select LIBC_GLIBC_2_20_or_later
+ select LIBC_GLIBC_2_21_or_later
config LIBC_GLIBC_LINARO_V_2_20
bool
@@ -53,14 +58,17 @@ config LIBC_GLIBC_V_2_20
config LIBC_GLIBC_V_2_19
bool
prompt "2.19"
+ select LIBC_GLIBC_2_17_or_later
config LIBC_GLIBC_V_2_18
bool
prompt "2.18"
+ select LIBC_GLIBC_2_17_or_later
config LIBC_GLIBC_V_2_17
bool
prompt "2.17"
+ select LIBC_GLIBC_2_17_or_later
config LIBC_GLIBC_V_2_16_0
bool
@@ -132,8 +140,19 @@ config LIBC_GLIBC_CUSTOM
endchoice
+# glibc 2.21 depends on gcc >= 4.6
+config LIBC_GLIBC_2_21_or_later
+ bool
+ depends on CC_GCC_4_6_or_later
+ select LIBC_GLIBC_2_20_or_later
+
config LIBC_GLIBC_2_20_or_later
bool
+ select LIBC_GLIBC_2_17_or_later
+
+# DeMark no more ports
+config LIBC_GLIBC_2_17_or_later
+ bool
config LIBC_CUSTOM
bool
@@ -154,6 +173,7 @@ config LIBC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
+ default "2.22" if LIBC_GLIBC_V_2_22
default "2.21" if LIBC_GLIBC_V_2_21
default "linaro-2.20-2014.11" if LIBC_GLIBC_LINARO_V_2_20
default "2.20" if LIBC_GLIBC_V_2_20
diff --git a/config/libc/musl.in b/config/libc/musl.in
index 9ecae01..f5b4fc0 100644
--- a/config/libc/musl.in
+++ b/config/libc/musl.in
@@ -20,7 +20,7 @@ choice
config LIBC_MUSL_V_1_1
bool
- prompt "1.1.9 (Mainline)"
+ prompt "1.1.11 (Mainline)"
depends on EXPERIMENTAL
config LIBC_MUSL_V_1_0
@@ -38,6 +38,6 @@ config LIBC_VERSION
string
# Don't remove next line
# CT_INSERT_VERSION_STRING_BELOW
- default "1.1.9" if LIBC_MUSL_V_1_1
+ default "1.1.11" if LIBC_MUSL_V_1_1
default "1.0.5" if LIBC_MUSL_V_1_0
default "custom" if LIBC_MUSL_V_CUSTOM