File tree 3 files changed +0
-10
lines changed
development/libraries/glibc
3 files changed +0
-10
lines changed Original file line number Diff line number Diff line change 14
14
bigEndian = false ;
15
15
arch = "armv5tel" ;
16
16
float = "soft" ;
17
- withTLS = true ;
18
17
libc = "glibc" ;
19
18
platform = platforms . sheevaplug ;
20
19
openssl . system = "linux-generic32" ;
26
25
arch = "armv6l" ;
27
26
float = "hard" ;
28
27
fpu = "vfp" ;
29
- withTLS = true ;
30
28
libc = "glibc" ;
31
29
platform = platforms . raspberrypi ;
32
30
openssl . system = "linux-generic32" ;
38
36
arch = "armv7-a" ;
39
37
float = "hard" ;
40
38
fpu = "vfpv3-d16" ;
41
- withTLS = true ;
42
39
libc = "glibc" ;
43
40
platform = platforms . armv7l-hf-multiplatform ;
44
41
openssl . system = "linux-generic32" ;
48
45
config = "aarch64-unknown-linux-gnu" ;
49
46
bigEndian = false ;
50
47
arch = "aarch64" ;
51
- withTLS = true ;
52
48
libc = "glibc" ;
53
49
platform = platforms . aarch64-multiplatform ;
54
50
} ;
67
63
68
64
libc = "glibc" ;
69
65
70
- withTLS = true ;
71
66
openssl . system = "linux-generic32" ;
72
67
} ;
73
68
76
71
bigEndian = false ;
77
72
arch = "mips" ;
78
73
float = "hard" ;
79
- withTLS = true ;
80
74
libc = "glibc" ;
81
75
platform = platforms . fuloong2f_n32 ;
82
76
openssl . system = "linux-generic32" ;
Original file line number Diff line number Diff line change @@ -127,7 +127,6 @@ stdenv.mkDerivation ({
127
127
] ++ lib . optionals withLinuxHeaders [
128
128
"--enable-kernel=3.2.0" # can't get below with glibc >= 2.26
129
129
] ++ lib . optionals ( cross != null ) [
130
- ( if cross . withTLS then "--with-tls" else "--without-tls" )
131
130
( if cross ? float && cross . float == "soft" then "--without-fp" else "--with-fp" )
132
131
] ++ lib . optionals ( cross != null ) [
133
132
"--with-__thread"
@@ -190,8 +189,6 @@ stdenv.mkDerivation ({
190
189
libc_cv_forced_unwind=yes
191
190
libc_cv_c_cleanup=yes
192
191
libc_cv_gnu89_inline=yes
193
- # Only due to a problem in gcc configure scripts:
194
- libc_cv_sparc64_tls=${ if cross . withTLS then "yes" else "no" }
195
192
EOF
196
193
197
194
export BUILD_CC=gcc
Original file line number Diff line number Diff line change @@ -5366,7 +5366,6 @@ with pkgs;
5366
5366
bigEndian = true;
5367
5367
arch = "mips";
5368
5368
float = "soft";
5369
- withTLS = true;
5370
5369
libc = "uclibc";
5371
5370
platform = {
5372
5371
name = "ben_nanonote";
You can’t perform that action at this time.
0 commit comments