Advertisement
valandil211

fibheap error

May 9th, 2016
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.95 KB | None | 0 0
  1. if [ x"-fpic" != x ]; then \
  2. gcc -c -DHAVE_CONFIG_H -g -D_FORTIFY_SOURCE=2 -I. -I../../libiberty/../include -W -Wall -Wwrite-strings -Wc++-compat -Wstrict-prototypes -pedantic -D_GNU_SOURCE -fpic ../../libiberty/fibheap.c -o pic/fibheap.o; \
  3. else true; fi
  4. In file included from /usr/include/stdlib.h:24:0,
  5. from ../../libiberty/fibheap.c:29:
  6. /usr/include/features.h:331:4: warning: #warning _FORTIFY_SOURCE requires compiling with optimization (-O) [-Wcpp]
  7. # warning _FORTIFY_SOURCE requires compiling with optimization (-O)
  8. ^~~~~~~
  9. ../../libiberty/fibheap.c: In function ‘fibheap_replace_key_data’:
  10. ../../libiberty/fibheap.c:38:24: error: ‘LONG_MIN’ undeclared (first use in this function)
  11. #define FIBHEAPKEY_MIN LONG_MIN
  12. ^
  13. ../../libiberty/fibheap.c:220:30: note: in expansion of macro ‘FIBHEAPKEY_MIN’
  14. if (okey == key && okey != FIBHEAPKEY_MIN)
  15. ^~~~~~~~~~~~~~
  16. ../../libiberty/fibheap.c:38:24: note: each undeclared identifier is reported only once for each function it appears in
  17. #define FIBHEAPKEY_MIN LONG_MIN
  18. ^
  19. ../../libiberty/fibheap.c:220:30: note: in expansion of macro ‘FIBHEAPKEY_MIN’
  20. if (okey == key && okey != FIBHEAPKEY_MIN)
  21. ^~~~~~~~~~~~~~
  22. ../../libiberty/fibheap.c: In function ‘fibheap_delete_node’:
  23. ../../libiberty/fibheap.c:38:24: error: ‘LONG_MIN’ undeclared (first use in this function)
  24. #define FIBHEAPKEY_MIN LONG_MIN
  25. ^
  26. ../../libiberty/fibheap.c:261:36: note: in expansion of macro ‘FIBHEAPKEY_MIN’
  27. fibheap_replace_key (heap, node, FIBHEAPKEY_MIN);
  28. ^~~~~~~~~~~~~~
  29. Makefile:751: recipe for target 'fibheap.o' failed
  30. make[3]: *** [fibheap.o] Error 1
  31. make[3]: Leaving directory '/home/valandil/software/aur-PKGBUILDs/gcc-gcj/src/gcc/build/libiberty'
  32. Makefile:10271: recipe for target 'all-stage1-libiberty' failed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement