Advertisement
logicmoo

Not used to seeing these warnings

Mar 13th, 2016
266
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Prolog 4.03 KB | None | 0 0
  1. prolog_codewalk:gtrace/0
  2. % Found new meta-predicates in iteration 1 (0.516 sec)
  3. % :- meta_predicate apply:partition_(*,1,*,*).
  4. % :- meta_predicate apply:maplist_(*,*,2).
  5. % :- meta_predicate apply:maplist_(*,*,*,*,4).
  6. % :- meta_predicate apply:include_(*,1,*).
  7. % :- meta_predicate apply:foldl_(*,*,4,?,*).
  8. % :- meta_predicate apply:foldl_(*,*,*,*,6,?,*).
  9. % :- meta_predicate apply:scanl_(*,*,4,?,*).
  10. % :- meta_predicate apply:scanl_(*,*,*,*,6,?,*).
  11. % :- meta_predicate apply:partition_(*,2,*,*,*).
  12. % :- meta_predicate apply:maplist_(*,1).
  13. % :- meta_predicate apply:exclude_(*,1,*).
  14. % :- meta_predicate apply:maplist_(*,*,*,3).
  15. % :- meta_predicate apply:foldl_(*,3,?,*).
  16. % :- meta_predicate apply:foldl_(*,*,*,5,?,*).
  17. % :- meta_predicate apply:scanl_(*,3,?,*).
  18. % :- meta_predicate apply:scanl_(*,*,*,5,?,*).
  19. % :- meta_predicate swi_option:meta_option(*,1,*,*).
  20. % :- meta_predicate pairs:map_list_to_pairs2(*,2,*).
  21. % Restarting analysis ...
  22. % Found new meta-predicates in iteration 2 (0.266 sec)
  23. % :- meta_predicate apply:partition_(*,*,2,*,*,*,*).
  24. % :- meta_predicate swi_option:meta_options(*,1,*,*).
  25.  
  26. ./swipl.sh -C "/usr/local/lib/swipl-7.3.19" --home=. -f none -g make -t halt
  27. Warning: Package swicli: no binary for architecture x86_64-cygwin
  28. % Found new meta-predicates in iteration 1 (12.812 sec)
  29. % :- meta_predicate pldoc_wiki:matches(2,*,*,?,?).
  30. % Restarting analysis ...
  31. % Found new meta-predicates in iteration 2 (4.141 sec)
  32. % :- meta_predicate thread_pool:worker_exitted(*,*,0).
  33. % :- meta_predicate pure_input:phrase_stream(//,+,*).
  34. % :- meta_predicate thread_httpd:http_process(0,+,+,*).
  35. % :- meta_predicate http_dispatch:call_action(1,?).
  36. % :- meta_predicate prolog_xref:eval_cond(0,*).
  37. % :- meta_predicate prolog_xref:process_predicate_comma(?,2,?).
  38. % :- meta_predicate prolog_xref:process_predicate_list(*,2,?).
  39. % :- meta_predicate quasi_quotations:phrase_quasi_quotation(//,*).
  40. % :- meta_predicate http_parameters:fill_parameter(*,*,2).
  41. % :- meta_predicate time:run_alarm_goal(*,0).
  42. % :- meta_predicate assoc:map_assoc_(*,2,*).
  43. % :- meta_predicate assoc:map_assoc_(*,1).
  44. % :- meta_predicate rbtrees:partial_map(*,*,*,*,2,*).
  45. % :- meta_predicate rbtrees:apply(*,*,2,*).
  46. % Restarting analysis ...
  47. % Found new meta-predicates in iteration 3 (3.484 sec)
  48. % :- meta_predicate http_dispatch:call_action(1,*,*).
  49. % :- meta_predicate http_dispatch:time_limit_action(1,*,*).
  50. % :- meta_predicate http_parameters:fill_parameters(*,*,2).
  51. % :- meta_predicate http_parameters:http_parms(*,*,2,*).
  52. % Restarting analysis ...
  53. % Found new meta-predicates in iteration 4 (3.453 sec)
  54. % :- meta_predicate http_dispatch:spawn_action(1,*,*).
  55. % Restarting analysis ...
  56. % Found new meta-predicates in iteration 5 (3.500 sec)
  57. % :- meta_predicate http_dispatch:action(1,*,*).
  58. % Restarting analysis ...
  59. Warning: The predicates below are not defined. If these are defined
  60. Warning: at runtime using assert/1, use :- dynamic Name/Arity.
  61. Warning:
  62. Warning: http_parameters:-/2, which is referenced by
  63. Warning:        /usr/local/lib/swipl-7.3.19/library/http/http_parameters.pl:244:42: 1-st clause of http_parameters:http_convert_parameters/2
  64. Warning: pldoc_http:start_emacs/0, which is referenced by
  65. Warning:        /usr/local/lib/swipl-7.3.19/library/doc_http.pl:208:8: 1-st clause of pldoc_http:prepare_editor/0
  66. Warning: prolog_edit:in_pce_thread/1, which is referenced by
  67. Warning:        /usr/local/lib/swipl-7.3.19/library/edit.pl:281:8: 2-nd clause of prolog_edit:do_edit_source/1
  68. make[1]: Leaving directory '/cygdrive/d/GITHUB/SWI/swipl-devel-unstable/packages'
  69. make[1]: Entering directory '/cygdrive/d/GITHUB/SWI/swipl-devel-unstable/packages'
  70. mkdir -p /usr/local/lib/swipl-7.3.19/doc/packages
  71. for p in ; do \
  72.     if [ -r $p/Makefile ]; then \
  73.         make -C $p html-install || echo $p >> .failed.html-install; \
  74.     fi; \
  75. done
  76. /usr/bin/install -c -m 644 index.html /usr/local/lib/swipl-7.3.19/doc/packages
  77. make[1]: Leaving directory '/cygdrive/d/GITHUB/SWI/swipl-devel-unstable/packages'
  78. make[1]: Entering directory '/cygdrive/d/GITHUB/SWI/swipl-devel-unstable/src'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement