开发者

Compiling GMP for cross compiler problem

开发者 https://www.devze.com 2023-02-13 17:29 出处:网络
I\'m compiling gnu gmp for my mac/linux cross compiler but i\'m getting this error: In file included from ../gmp-impl.h:102,

I'm compiling gnu gmp for my mac/linux cross compiler but i'm getting this error:

In file included from ../gmp-impl.h:102,
    开发者_Python百科             from fib_table.c:4:
../fib_table.h:4: warning: data definition has no type or storage class
../fib_table.h:4: warning: type defaults to ‘int’ in declaration of ‘Error’
../fib_table.h:4: warning: type defaults to ‘int’ in declaration of ‘error’
../fib_table.h:4: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘data’
fib_table.c:7: warning: data definition has no type or storage class
fib_table.c:7: warning: type defaults to ‘int’ in declaration of ‘Error’
fib_table.c:7: warning: type defaults to ‘int’ in declaration of ‘error’
fib_table.c:7: error: expected ‘=’, ‘,’, ‘;’, ‘asm’ or ‘__attribute__’ before ‘data’
fib_table.c:107: warning: ISO C does not allow extra ‘;’ outside of a function
make[2]: *** [fib_table.lo] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all] Error 2

when running "make"

My configure command is "./configure --prefix=/Users/daniel/gmp --build=i386-linux"


make distclean solved it for me

0

精彩评论

暂无评论...
验证码 换一张
取 消