Advertisement
xzz53

Untitled

Sep 22nd, 2019
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.07 KB | None | 0 0
  1. ==> Extracting sources...
  2. -> Creating working copy of trace-cmd git repo...
  3. Cloning into 'trace-cmd'...
  4. done.
  5. ==> Starting pkgver()...
  6. ==> Updated version: kernelshark-git 1.0.r34.gd448481-1
  7. ==> Starting build()...
  8.  
  9. make -C /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation all
  10. python-dev is not installed, not compiling python plugins
  11.  
  12. UPDATE trace_plugin_dir
  13. Re-run cmake no build system arguments
  14. COMPILE FPIC event-parse.o
  15. COMPILE FPIC event-plugin.o
  16. -- The C compiler identification is GNU 9.1.0
  17. COMPILE FPIC trace-hash.o
  18. COMPILE FPIC kbuffer-parse.o
  19. -- The CXX compiler identification is GNU 9.1.0
  20. -- Check for working C compiler: /usr/bin/cc
  21. COMPILE FPIC trace-hooks.o
  22. COMPILE FPIC trace-seq.o
  23. COMPILE FPIC trace-input.o
  24. -- Check for working C compiler: /usr/bin/cc -- works
  25. -- Detecting C compiler ABI info
  26. COMPILE FPIC trace-output.o
  27. -- Detecting C compiler ABI info - done
  28. -- Detecting C compile features
  29. -- Detecting C compile features - done
  30. -- Check for working CXX compiler: /usr/bin/c++
  31. -- Check for working CXX compiler: /usr/bin/c++ -- works
  32. -- Detecting CXX compiler ABI info
  33. COMPILE FPIC parse-filter.o
  34. parse-filter.c: In function ‘arg_to_str’:
  35. parse-filter.c:2161:3: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  36. 2161 | asprintf(&str, arg->boolean.value ? "TRUE" : "FALSE");
  37. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  38. parse-filter.c: In function ‘op_to_str’:
  39. parse-filter.c:1954:5: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  40. 1954 | asprintf(&str, val ? "TRUE" : "FALSE");
  41. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  42. parse-filter.c:1972:3: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  43. 1972 | asprintf(&str, "(%s) %s (%s)", left, op, right);
  44. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  45. parse-filter.c:1988:4: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  46. 1988 | asprintf(&str, right_val ? "FALSE" : "TRUE");
  47. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  48. parse-filter.c:1991:3: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  49. 1991 | asprintf(&str, "%s(%s)", op, right);
  50. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  51. parse-filter.c: In function ‘num_to_str’:
  52. parse-filter.c:2109:3: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  53. 2109 | asprintf(&str, "%s %s %s", lstr, op, rstr);
  54. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  55. parse-filter.c: In function ‘str_to_str’:
  56. parse-filter.c:2144:3: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  57. 2144 | asprintf(&str, "%s %s \"%s\"",
  58. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  59. 2145 | arg->str.field->name, op, arg->str.val);
  60. | ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  61. parse-filter.c: In function ‘val_to_str’:
  62. parse-filter.c:2007:2: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  63. 2007 | asprintf(&str, "%lld", arg->value.val);
  64. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  65. parse-filter.c: In function ‘exp_to_str’:
  66. parse-filter.c:2065:2: warning: ignoring return value of ‘asprintf’, declared with attribute warn_unused_result [-Wunused-result]
  67. 2065 | asprintf(&str, "%s %s %s", lstr, op, rstr);
  68. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  69. COMPILE FPIC trace-recorder.o
  70. -- Detecting CXX compiler ABI info - done
  71. -- Detecting CXX compile features
  72. -- Detecting CXX compile features - done
  73.  
  74. project: Kernel Shark: (version: 1.0.0)
  75.  
  76. CMake Error at build/FindTraceCmd.cmake:64 (MESSAGE):
  77.  
  78.  
  79. Could not find trace-cmd!
  80.  
  81. Call Stack (most recent call first):
  82. CMakeLists.txt:20 (include)
  83.  
  84.  
  85. -- Configuring incomplete, errors occurred!
  86. See also "/home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/kernel-shark/build/CMakeFiles/CMakeOutput.log".
  87. See also "/home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/kernel-shark/build/CMakeFiles/CMakeError.log".
  88. trace-recorder.c: In function ‘tracecmd_free_recorder’:
  89. trace-recorder.c:86:4: warning: ignoring return value of ‘ftruncate’, declared with attribute warn_unused_result [-Wunused-result]
  90. 86 | ftruncate(recorder->fd1, 0);
  91. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~
  92. trace-recorder.c: In function ‘tracecmd_flush_recording’:
  93. trace-recorder.c:450:4: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
  94. 450 | write(recorder->fd, buf, ret);
  95. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  96. trace-recorder.c:460:3: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
  97. 460 | write(recorder->fd, buf, recorder->page_size - wrote);
  98. | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  99. trace-recorder.c: In function ‘update_fd’:
  100. trace-recorder.c:336:2: warning: ignoring return value of ‘ftruncate’, declared with attribute warn_unused_result [-Wunused-result]
  101. 336 | ftruncate(fd, 0);
  102. | ^~~~~~~~~~~~~~~~
  103. make: *** [Makefile:266: /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/kernel-shark/build/Makefile] Error 1
  104. make: *** Waiting for unfinished jobs....
  105. COMPILE FPIC parse-utils.o
  106. COMPILE FPIC trace-util.o
  107. ASCIIDOC trace-cmd-hist.1.xsl
  108. COMPILE FPIC event-parse-api.o
  109. COMPILE FPIC tep_strerror.o
  110. COMPILE FPIC trace-filter-hash.o
  111. COMPILE FPIC trace-msg.o
  112. COMPILE FPIC trace-blk-hack.o
  113. COMPILE FPIC trace-ftrace.o
  114. BUILD STATIC LIB libtraceevent.a
  115. ASCIIDOC trace-cmd-stream.1.xsl
  116. ASCIIDOC trace-cmd-split.1.xsl
  117. ASCIIDOC trace-cmd-show.1.xsl
  118. BUILD STATIC LIB libtracecmd.a
  119. ASCIIDOC trace-cmd-options.1.xsl
  120. ASCIIDOC trace-cmd-list.1.xsl
  121. ASCIIDOC trace-cmd-reset.1.xsl
  122. ASCIIDOC trace-cmd-restore.1.xsl
  123. ASCIIDOC trace-cmd-report.1.xsl
  124. ASCIIDOC trace-cmd-check-events.1.xsl
  125. ASCIIDOC trace-cmd-profile.1.xsl
  126. ASCIIDOC trace-cmd-start.1.xsl
  127. ASCIIDOC trace-cmd-record.1.xsl
  128. ASCIIDOC trace-cmd-mem.1.xsl
  129. ASCIIDOC trace-cmd-listen.1.xsl
  130. ASCIIDOC trace-cmd-snapshot.1.xsl
  131. ASCIIDOC trace-cmd-stat.1.xsl
  132. ASCIIDOC trace-cmd-extract.1.xsl
  133. ASCIIDOC trace-cmd-stack.1.xsl
  134. ASCIIDOC trace-cmd-stop.1.xsl
  135. ASCIIDOC trace-cmd.1.xsl
  136. ASCIIDOC trace-cmd.dat.5.xsl
  137. XSLTPROC trace-cmd-hist.1
  138. XSLTPROC trace-cmd-stream.1
  139. XSLTPROC trace-cmd-split.1
  140. XSLTPROC trace-cmd-show.1
  141. XSLTPROC trace-cmd-list.1
  142. XSLTPROC trace-cmd-options.1
  143. XSLTPROC trace-cmd-reset.1
  144. XSLTPROC trace-cmd-restore.1
  145. XSLTPROC trace-cmd-report.1
  146. XSLTPROC trace-cmd-check-events.1
  147. XSLTPROC trace-cmd-profile.1
  148. XSLTPROC trace-cmd-record.1
  149. XSLTPROC trace-cmd-start.1
  150. XSLTPROC trace-cmd-mem.1
  151. XSLTPROC trace-cmd-snapshot.1
  152. XSLTPROC trace-cmd-listen.1
  153. XSLTPROC trace-cmd-stat.1
  154. XSLTPROC trace-cmd-extract.1
  155. XSLTPROC trace-cmd-stack.1
  156. XSLTPROC trace-cmd-stop.1
  157. XSLTPROC trace-cmd.1
  158. XSLTPROC trace-cmd.dat.5
  159. rm /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-show.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-snapshot.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-report.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-split.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-stack.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-check-events.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-listen.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-stop.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-restore.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-stream.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-extract.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-start.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-list.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-reset.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-options.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-record.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-profile.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-hist.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd.dat.5.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-mem.1.xsl /home/xyzzy/temp/makepkg/kernelshark-git/src/trace-cmd/Documentation/trace-cmd-stat.1.xsl
  160. ==> ERROR: A failure occurred in build().
  161. Aborting...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement