A compilação do GCC gera “real.h: 53: erro: 'SIZEOF_LONG' não declarado aqui (não em uma função)”

Estou tentando compilar o GCC 4.7.2 em umBuffalo LinkStation Pro Duo (depois dedesbloqueio ele) que roda o Linux 2.6.31.8 armv5tel.

Infelizmente,make lança alguns erros, começando com

gcc -c  -DIN_GCC_FRONTEND -g -fkeep-inline-functions -DIN_GCC   -W -Wall -Wwrite-strings -Wcast-qual -Wstrict-prototypes -Wmissing-prototypes -Wmissing-formIn file included from ../../gcc-4.7.2/gcc/tree.h:32,
                 from ../../gcc-4.7.2/gcc/c-lang.c:27:
../../gcc-4.7.2/gcc/real.h:53: error: 'SIZEOF_LONG' undeclared here (not in a function)
In file included from ../../gcc-4.7.2/gcc/tree.h:32,
                 from ../../gcc-4.7.2/gcc/c-lang.c:27:
../../gcc-4.7.2/gcc/real.h:87:5: error: division by zero in #if
../../gcc-4.7.2/gcc/real.h:87:5: error: division by zero in #if
../../gcc-4.7.2/gcc/real.h:90:6: error: division by zero in #if

Linha 53 dereal.h lêunsigned long sig[SIGSZ];, OndeSIGSZ é definido na linha 40 como
#define SIGSZ (SIGNIFICAND_BITS / HOST_BITS_PER_LONG)
enquanto a linha 87 é#if REAL_WIDTH == 1 comREAL_WIDTH definido a partir da linha 72 como
#define REAL_WIDTH \<br>(REAL_VALUE_TYPE_SIZE/HOST_BITS_PER_WIDE_INT \<br>+ (REAL_VALUE_TYPE_SIZE%HOST_BITS_PER_WIDE_INT ? 1 : 0)) /* round up */

Isso parece se resumir aoHOST_BITS_PER_* sendo zero. Eu tenho que defini-los manualmente com algunsconfigure parâmetro ou como esse problema pode ser resolvido?

atualizar

config.log contém os seguintes erros:

conftest.c:10:19: error: ppl_c.h: No such file or directory
conftest.c: In function 'main':
conftest.c:16: error: 'choke' undeclared (first use in this function)
conftest.c:16: error: (Each undeclared identifier is reported only once
conftest.c:16: error: for each function it appears in.)
conftest.c:16: error: expected ';' before 'me'
configure:5708: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE_URL ""
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include "ppl_c.h"
| int
| main ()
| {
|.
|     #if PPL_VERSION_MAJOR != 0 || PPL_VERSION_MINOR < 11
|     choke me
|     #endif
|.
|   ;
|   r

Segueesta postagem Eu pareço ter esquecido de instalarppl, o que vou tentar agora

questionAnswers(2)

yourAnswerToTheQuestion