File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 22
22
# - libc version 2.11.3 (https://packages.debian.org/search?suite=default§ion=all&arch=any&searchon=names&keywords=libc6)
23
23
# - libstdc++ version 4.4.5 (https://packages.debian.org/search?suite=default§ion=all&arch=any&searchon=names&keywords=libstdc%2B%2B6)
24
24
#
25
- # Ubuntu 10 .04.4 (Lucid Lynx) has:
25
+ # Ubuntu 16 .04 (Xenial) EOL: 2024
26
26
#
27
- # - g++ version 4.4.3 (http://packages.ubuntu.com/search?keywords=g%2B%2B&searchon=names&suite=lucid§ion=all)
28
- # - libc version 2.11.1 (http://packages.ubuntu.com/search?keywords=libc6&searchon=names&suite=lucid§ion=all)
27
+ # - g++ version 5.3.1 (http://packages.ubuntu.com/search?keywords=g%2B%2B&searchon=names&suite=lucid§ion=all)
28
+ # - libc version 2.23.0 (http://packages.ubuntu.com/search?keywords=libc6&searchon=names&suite=lucid§ion=all)
29
29
# - libstdc++ version 4.4.3 (http://packages.ubuntu.com/search?suite=lucid§ion=all&arch=any&keywords=libstdc%2B%2B&searchon=names)
30
30
#
31
31
# Taking the minimum of these as our target.
32
32
#
33
33
# According to GNU ABI document (http://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html) this corresponds to:
34
- # GCC 4.4.0 : GCC_4.4 .0
34
+ # GCC 4.8.5 : GCC_4.8 .0
35
35
# GCC 4.4.2: GLIBCXX_3.4.13, CXXABI_1.3.3
36
36
# (glibc) GLIBC_2_11
37
37
#
38
38
MAX_VERSIONS = {
39
- 'GCC' : (4 ,4 ,0 ),
39
+ 'GCC' : (4 ,8 ,0 ),
40
40
'CXXABI' : (1 ,3 ,3 ),
41
41
'GLIBCXX' : (3 ,4 ,13 ),
42
- 'GLIBC' : (2 ,11 )
42
+ 'GLIBC' : (2 ,17 )
43
43
}
44
44
# See here for a description of _IO_stdin_used:
45
45
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ files: []
34
34
script : |
35
35
36
36
WRAP_DIR=$HOME/wrapped
37
- HOSTS="x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu"
37
+ HOSTS="i686-pc-linux-gnu x86_64-linux-gnu arm-linux-gnueabihf aarch64-linux-gnu"
38
38
CONFIGFLAGS="--enable-glibc-back-compat --enable-reduce-exports --disable-bench --disable-gui-tests"
39
39
FAKETIME_HOST_PROGS="gcc g++"
40
40
FAKETIME_PROGS="date ar ranlib nm"
You can’t perform that action at this time.
0 commit comments