16
16
# Path to C compiler to use when producing binaries targeting the
17
17
# current build environment.
18
18
#
19
+ # target_cc
20
+ #
21
+ # Path to C compiler to use for building binaries targeting the
22
+ # target architecture.
23
+ #
19
24
# openssl_target
20
25
# Name of OpenSSL platform build target.
21
26
@@ -25,6 +30,7 @@ aarch64-apple-darwin:
25
30
- darwin
26
31
needs_toolchain : true
27
32
host_cc : clang
33
+ target_cc : clang
28
34
needs :
29
35
- bzip2
30
36
- libedit
@@ -44,6 +50,7 @@ aarch64-apple-ios:
44
50
- darwin
45
51
needs_toolchain : true
46
52
host_cc : clang
53
+ target_cc : clang
47
54
needs :
48
55
- bzip2
49
56
- libffi
@@ -57,6 +64,7 @@ aarch64-unknown-linux-gnu:
57
64
- linux
58
65
docker_image_suffix : .cross
59
66
host_cc : /usr/bin/x86_64-linux-gnu-gcc
67
+ target_cc : /usr/bin/aarch64-linux-gnu-gcc
60
68
needs :
61
69
- bdb
62
70
- binutils
@@ -84,6 +92,7 @@ arm64-apple-tvos:
84
92
- darwin
85
93
needs_toolchain : true
86
94
host_cc : clang
95
+ target_cc : clang
87
96
needs :
88
97
- bzip2
89
98
- sqlite
@@ -96,6 +105,7 @@ armv7-unknown-linux-gnueabi:
96
105
- linux
97
106
docker_image_suffix : .cross
98
107
host_cc : /usr/bin/x86_64-linux-gnu-gcc
108
+ target_cc : /usr/bin/arm-linux-gnueabi-gcc
99
109
needs :
100
110
- bdb
101
111
- binutils
@@ -123,6 +133,7 @@ armv7-unknown-linux-gnueabihf:
123
133
- linux
124
134
docker_image_suffix : .cross
125
135
host_cc : /usr/bin/x86_64-linux-gnu-gcc
136
+ target_cc : /usr/bin/arm-linux-gnueabihf-gcc
126
137
needs :
127
138
- bdb
128
139
- binutils
@@ -150,6 +161,7 @@ i686-unknown-linux-gnu:
150
161
- linux
151
162
needs_toolchain : true
152
163
host_cc : clang
164
+ target_cc : clang
153
165
needs :
154
166
- bdb
155
167
- binutils
@@ -179,6 +191,7 @@ mips-unknown-linux-gnu:
179
191
- linux
180
192
docker_image_suffix : .cross
181
193
host_cc : /usr/bin/x86_64-linux-gnu-gcc
194
+ target_cc : /usr/bin/mips-linux-gnu-gcc
182
195
needs :
183
196
- bdb
184
197
- binutils
@@ -206,6 +219,7 @@ mipsel-unknown-linux-gnu:
206
219
- linux
207
220
docker_image_suffix : .cross
208
221
host_cc : /usr/bin/x86_64-linux-gnu-gcc
222
+ target_cc : /usr/bin/mipsel-linux-gnu-gcc
209
223
needs :
210
224
- bdb
211
225
- binutils
@@ -233,6 +247,7 @@ s390x-unknown-linux-gnu:
233
247
- linux
234
248
docker_image_suffix : .cross
235
249
host_cc : /usr/bin/x86_64-linux-gnu-gcc
250
+ target_cc : /usr/bin/s390x-linux-gnu-gcc
236
251
needs :
237
252
- bdb
238
253
- binutils
@@ -260,6 +275,7 @@ thumb7k-apple-watchos:
260
275
- darwin
261
276
needs_toolchain : true
262
277
host_cc : clang
278
+ target_cc : clang
263
279
needs :
264
280
- bzip2
265
281
- sqlite
@@ -271,6 +287,7 @@ x86_64-apple-darwin:
271
287
host_platforms :
272
288
- darwin
273
289
host_cc : clang
290
+ target_cc : clang
274
291
needs :
275
292
- bzip2
276
293
- libedit
@@ -290,6 +307,7 @@ x86_64-apple-ios:
290
307
- darwin
291
308
needs_toolchain : true
292
309
host_cc : clang
310
+ target_cc : clang
293
311
needs :
294
312
- bzip2
295
313
- libffi
@@ -303,6 +321,7 @@ x86_64-apple-tvos:
303
321
- darwin
304
322
needs_toolchain : true
305
323
host_cc : clang
324
+ target_cc : clang
306
325
needs :
307
326
- bzip2
308
327
- sqlite
@@ -314,6 +333,7 @@ x86_64-apple-watchos:
314
333
- darwin
315
334
needs_toolchain : true
316
335
host_cc : clang
336
+ target_cc : clang
317
337
needs :
318
338
- bzip2
319
339
- sqlite
@@ -326,6 +346,7 @@ x86_64-unknown-linux-gnu:
326
346
- linux
327
347
needs_toolchain : true
328
348
host_cc : clang
349
+ target_cc : clang
329
350
needs :
330
351
- bdb
331
352
- binutils
@@ -354,6 +375,7 @@ x86_64-unknown-linux-musl:
354
375
- linux
355
376
needs_toolchain : true
356
377
host_cc : clang
378
+ target_cc : musl-clang
357
379
needs :
358
380
- bdb
359
381
- binutils
0 commit comments