Skip to content

Commit de9f32a

Browse files
committed
Configuration arm-linux uses the hard-FP ABI
Like all modern Linux distributions for ARM 32 bits.
1 parent 9597352 commit de9f32a

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed

configure

+4-6
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,11 @@ Supported targets:
4444
ppc-eabi-diab (PowerPC, EABI with Diab tools)
4545
ppc-linux (PowerPC, Linux)
4646
arm-eabi (ARM, EABI, little endian)
47-
arm-linux (ARM, EABI, little endian)
4847
arm-eabihf (ARM, EABI using hardware FP registers, little endian)
49-
arm-hardfloat (ARM, EABI using hardware FP registers, little endian)
48+
arm-linux (ARM, EABI using hardware FP registers, little endian)
5049
armeb-eabi (ARM, EABI, big endian)
51-
armeb-linux (ARM, EABI, big endian)
5250
armeb-eabihf (ARM, EABI using hardware FP registers, big endian)
53-
armeb-hardfloat (ARM, EABI using hardware FP registers, big endian)
51+
armeb-linux (ARM, EABI using hardware FP registers, big endian)
5452
x86_32-linux (x86 32 bits, Linux)
5553
x86_32-bsd (x86 32 bits, BSD)
5654
x86_64-linux (x86 64 bits, Linux)
@@ -243,10 +241,10 @@ responsefile="gnu"
243241
if test "$arch" = "arm"; then
244242

245243
case "$target" in
246-
eabi|linux)
244+
eabi)
247245
abi="eabi"
248246
;;
249-
eabihf|hf|hardfloat)
247+
eabihf|linux|hf|hardfloat)
250248
abi="hardfloat"
251249
;;
252250
*)

tools/runner.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Configure() {
9696
./configure $configopts -toolprefix aarch64-linux-gnu- aarch64-linux
9797
;;
9898
arm,linux)
99-
./configure $configopts -toolprefix arm-linux-gnueabihf- arm-eabihf
99+
./configure $configopts -toolprefix arm-linux-gnueabihf- arm-linux
100100
;;
101101
ppc,linux)
102102
./configure $configopts -toolprefix powerpc-linux-gnu- ppc-linux

0 commit comments

Comments
 (0)