diff options
| author | Eric Andersen <andersen@codepoet.org> | 2005-01-23 11:18:02 +0000 | 
|---|---|---|
| committer | Eric Andersen <andersen@codepoet.org> | 2005-01-23 11:18:02 +0000 | 
| commit | 675837a50772858d78c6c5df6d2b7cfe07643871 (patch) | |
| tree | 2136d7e59552a5f0257bebcff9fe122c4ad144e5 | |
| parent | dda90723ce4a6d8c84dbf7c66ef8b2c4e5d67b2c (diff) | |
| download | buildroot-novena-675837a50772858d78c6c5df6d2b7cfe07643871.tar.gz buildroot-novena-675837a50772858d78c6c5df6d2b7cfe07643871.zip | |
Patch from acmay: http://bugs.uclibc.org/view.php?id=47
0000047: ARM BigEndian does not allow Soft Float
When ARMEB is selected for the arch I am unable to select soft float support.
The toolchain/Config.in does not have a depend for armeb, it just has arm.
The attached patch should cover it.
| -rw-r--r-- | toolchain/Config.in | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/toolchain/Config.in b/toolchain/Config.in index 704f74e42..2651254f8 100644 --- a/toolchain/Config.in +++ b/toolchain/Config.in @@ -29,7 +29,7 @@ config BR2_LARGEFILE  config BR2_SOFT_FLOAT  	bool "Use software floating point by default"  	default n -	depends on BR2_arm || BR2_mips || BR2_powerpc +	depends on BR2_arm || BR2_armeb || BR2_mips || BR2_powerpc  	help  	  If your target CPU does not have a Floating Point Unit (FPU) or a  	  kernel FPU emulator, but you still wish to support floating point | 
