File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -313,9 +313,13 @@ if test "$arch" = "x86" -a "$bitsize" = "32"; then
313
313
case " $target " in
314
314
bsd)
315
315
abi=" standard"
316
+ cc=" ${toolprefix} cc"
316
317
cc_options=" -m32"
318
+ casm=" ${toolprefix} cc"
317
319
casm_options=" -m32 -c"
320
+ clinker=" ${toolprefix} cc"
318
321
clinker_options=" -m32"
322
+ cprepro=" ${toolprefix} cc"
319
323
cprepro_options=" -m32 -U__GNUC__ -E"
320
324
system=" bsd"
321
325
;;
@@ -342,9 +346,13 @@ if test "$arch" = "x86" -a "$bitsize" = "64"; then
342
346
case " $target " in
343
347
bsd)
344
348
abi=" standard"
349
+ cc=" ${toolprefix} cc"
345
350
cc_options=" -m64"
351
+ casm=" ${toolprefix} cc"
346
352
casm_options=" -m64 -c"
353
+ clinker=" ${toolprefix} cc"
347
354
clinker_options=" -m64"
355
+ cprepro=" ${toolprefix} cc"
348
356
cprepro_options=" -m64 -U__GNUC__ -U__SIZEOF_INT128__ -E"
349
357
system=" bsd"
350
358
;;
You can’t perform that action at this time.
0 commit comments