Advertisement
Guest User

gcc error

a guest
Aug 2nd, 2015
511
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.78 KB | None | 0 0
  1. ../../gcc-4.4.4/gcc/gimple.h: In function ‘gimple_return_retval’:
  2. ../../gcc-4.4.4/gcc/system.h:577:55: warning: ISO C does not support ‘__FUNCTION__’ predefined identifier [-Wpedantic]
  3.     ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
  4.                                                        ^
  5. ../../gcc-4.4.4/gcc/gimple.h:4102:3: note: in expansion of macro ‘gcc_assert’
  6.    gcc_assert (gimple_num_ops (gs) == 1);
  7.    ^
  8. ../../gcc-4.4.4/gcc/gimple.h: In function ‘gimple_return_set_retval’:
  9. ../../gcc-4.4.4/gcc/system.h:577:55: warning: ISO C does not support ‘__FUNCTION__’ predefined identifier [-Wpedantic]
  10.     ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
  11.                                                        ^
  12. ../../gcc-4.4.4/gcc/gimple.h:4113:3: note: in expansion of macro ‘gcc_assert’
  13.    gcc_assert (gimple_num_ops (gs) == 1);
  14.    ^
  15. ../../gcc-4.4.4/gcc/system.h:577:55: warning: ISO C does not support ‘__FUNCTION__’ predefined identifier [-Wpedantic]
  16.     ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
  17.                                                        ^
  18. ../../gcc-4.4.4/gcc/gimple.h:4114:3: note: in expansion of macro ‘gcc_assert’
  19.    gcc_assert (retval == NULL_TREE
  20.    ^
  21. ../../gcc-4.4.4/gcc/gimple.h: In function ‘gimple_cdt_set_new_type’:
  22. ../../gcc-4.4.4/gcc/system.h:577:55: warning: ISO C does not support ‘__FUNCTION__’ predefined identifier [-Wpedantic]
  23.     ((void)(!(EXPR) ? fancy_abort (__FILE__, __LINE__, __FUNCTION__), 0 : 0))
  24.                                                        ^
  25. ../../gcc-4.4.4/gcc/gimple.h:4178:3: note: in expansion of macro ‘gcc_assert’
  26.    gcc_assert (TREE_CODE_CLASS (TREE_CODE (new_type)) == tcc_type);
  27.    ^
  28. ../../gcc-4.4.4/gcc/toplev.c: At top level:
  29. ../../gcc-4.4.4/gcc/toplev.c:536:1: error: redefinition of ‘floor_log2’
  30.  floor_log2 (unsigned HOST_WIDE_INT x)
  31.  ^
  32. In file included from ../../gcc-4.4.4/gcc/toplev.c:58:0:
  33. ../../gcc-4.4.4/gcc/toplev.h:190:1: note: previous definition of ‘floor_log2’ was here
  34.  floor_log2 (unsigned HOST_WIDE_INT x)
  35.  ^
  36. ../../gcc-4.4.4/gcc/toplev.c:571:1: error: redefinition of ‘exact_log2’
  37.  exact_log2 (unsigned HOST_WIDE_INT x)
  38.  ^
  39. In file included from ../../gcc-4.4.4/gcc/toplev.c:58:0:
  40. ../../gcc-4.4.4/gcc/toplev.h:196:1: note: previous definition of ‘exact_log2’ was here
  41.  exact_log2 (unsigned HOST_WIDE_INT x)
  42.  ^
  43. Makefile:2470: recipe for target 'toplev.o' failed
  44. make[2]: *** [toplev.o] Error 1
  45. make[2]: Leaving directory '/tmp/rbdev-build/build-gcc/gcc'
  46. Makefile:4863: recipe for target 'all-gcc' failed
  47. make[1]: *** [all-gcc] Error 2
  48. make[1]: Leaving directory '/tmp/rbdev-build/build-gcc'
  49. Makefile:738: recipe for target 'all' failed
  50. make: *** [all] Error 2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement