pastebin - collaborative debugging tool
eckelmann.kpaste.net RSS


Untitled
Posted by Anonymous on Tue 11th Sep 2018 10:30
raw | new post

  1. $ ./p clean valgrind
  2. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/systemd.in:15:warning: 'select' used by config symbol 'SYSTEMD' refers to undefined symbol 'MACHINE_ID'
  3. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/systemd.in:18:warning: 'select' used by config symbol 'SYSTEMD' refers to undefined symbol 'LIBSELINUX'
  4. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/systemd.in:24:warning: 'select' used by config symbol 'SYSTEMD' refers to undefined symbol 'HOST_SYSTEMD'
  5. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/systemd.in:15:warning: 'select' used by config symbol 'SYSTEMD' refers to undefined symbol 'MACHINE_ID'
  6. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/systemd.in:18:warning: 'select' used by config symbol 'SYSTEMD' refers to undefined symbol 'LIBSELINUX'
  7. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/systemd.in:24:warning: 'select' used by config symbol 'SYSTEMD' refers to undefined symbol 'HOST_SYSTEMD'
  8. /home/rmainz/work/bugxxx_error_print/jncg/ptxdist/rules/post/image_ubi.make:13: warning: overriding commands for target `/home/rmainz/work/bugxxx_error_print/jncg/ptxdist/platform-ecu02/images/root.ubi'
  9. /opt/ptxdist/lib/ptxdist-2012.10.0/rules/post/image_ubi.make:70: warning: ignoring old commands for target `/home/rmainz/work/bugxxx_error_print/jncg/ptxdist/platform-ecu02/images/root.ubi'
  10.  
  11. ----------------------
  12. target: valgrind.clean
  13. ----------------------
  14.  
  15. ptxdist: error: ptxd_make_world_init_compat: <PKG>_AUTOCONF is incompatible with <PKG>_CONF_OPT
  16. make: *** [/home/rmainz/work/bugxxx_error_print/jncg/ptxdist/platform-ecu02/state/valgrind.clean] Error 1
  17.  
  18.  
  19. Custom valgrind.make:
  20. -------- snip --------
  21. # -*-makefile-*-
  22. #
  23. # Copyright (C) 2005 by Shahar Livne <shahar@livnex.com>
  24. #               2008, 2009 by Marc Kleine-Budde <mkl@pengutronix.de>
  25. #               2018 by Roland Mainz <r.mainz@eckelmann.de>
  26. #
  27. # See CREDITS for details about who has contributed to this project.
  28. #
  29. # For further information about the PTXdist project and license conditions
  30. # see the README file.
  31. #
  32.  
  33. #
  34. # We provide this package
  35. #
  36.  
  37. # fixme: x86&&PPC need --host= below
  38. #PACKAGES-$(PTXCONF_ARCH_X86)-$(PTXCONF_VALGRIND) += valgrind
  39. #PACKAGES-$(PTXCONF_ARCH_PPC)-$(PTXCONF_VALGRIND) += valgrind
  40. PACKAGES-$(PTXCONF_ARCH_ARM)-$(PTXCONF_VALGRIND) += valgrind
  41.  
  42. #
  43. # Paths and names
  44. #
  45. VALGRIND_VERSION        := 3.13.0
  46. VALGRIND_MD5            := 817dd08f1e8a66336b9ff206400a5369
  47. VALGRIND                := valgrind-$(VALGRIND_VERSION)
  48. VALGRIND_SUFFIX         := tar.bz2
  49. VALGRIND_URL            := ftp://sourceware.org/pub/valgrind/$(VALGRIND).$(VALGRIND_SUFFIX)
  50. VALGRIND_SOURCE         := $(SRCDIR)/$(VALGRIND).$(VALGRIND_SUFFIX)
  51. VALGRIND_DIR            := $(BUILDDIR)/$(VALGRIND)
  52. VALGRIND_LICENSE        := GPLv2
  53.  
  54. # ----------------------------------------------------------------------------
  55. # Prepare
  56. # ----------------------------------------------------------------------------
  57.  
  58. VALGRIND_CONF_TOOL      := autoconf
  59. VALGRIND_CONF_OPT       := \
  60.         $(CROSS_AUTOCONF_USR) \
  61.          --host=armv7-unknown-linux-gnueabi
  62.  
  63. ifdef KERNEL_VERSION
  64. VALGRIND_KERNEL_VERSION := $(KERNEL_VERSION)
  65. endif
  66.  
  67. ifdef KERNEL_HEADER_VERSION
  68. VALGRIND_KERNEL_VERSION := $(KERNEL_HEADER_VERSION)
  69. endif
  70.  
  71. VALGRIND_PATH   := PATH=$(CROSS_PATH)
  72. VALGRIND_ENV    := \
  73.         $(CROSS_ENV) \
  74.         valgrind_cv_sys_kernel_version=$(VALGRIND_KERNEL_VERSION)
  75.  
  76. #
  77. # autoconf
  78. #
  79. VALGRIND_AUTOCONF := \
  80.         $(CROSS_AUTOCONF_USR) \
  81.         --enable-tls
  82.  
  83. # ----------------------------------------------------------------------------
  84. # Target-Install
  85. # ----------------------------------------------------------------------------
  86.  
  87. $(STATEDIR)/valgrind.targetinstall:
  88.         @$(call targetinfo)
  89.  
  90.         @$(call install_init, valgrind)
  91.         @$(call install_fixup, valgrind,PRIORITY,optional)
  92.         @$(call install_fixup, valgrind,SECTION,base)
  93.         @$(call install_fixup, valgrind,AUTHOR,"Shahar Livne <shahar@livnex.com>")
  94.         @$(call install_fixup, valgrind,DESCRIPTION,missing)
  95.  
  96.         @$(call install_copy, valgrind, 0, 0, 0755, -, /usr/bin/valgrind)
  97.  
  98.         @cd $(VALGRIND_PKGDIR) && \
  99.                 find usr/lib/valgrind -name "*.supp" -o -name "*.so" | while read file; do \
  100.                 $(call install_copy, valgrind, 0, 0, 0644, -, /$$file, n) \
  101.         done
  102.  
  103.         @cd $(VALGRIND_PKGDIR) && \
  104.                 find usr/lib/valgrind -type f \
  105.                         \! -wholename "*.a" \! -wholename "*.supp" \! -wholename "*.so" | while read file; do \
  106.                 $(call install_copy, valgrind, 0, 0, 0755, -, /$$file) \
  107.         done
  108.  
  109.         @$(call install_finish, valgrind)
  110.  
  111.         @$(call touch)
  112.  
  113. # vim: syntax=make
  114. -------- snip --------

Submit a correction or amendment below (click here to make a fresh posting)
After submitting an amendment, you'll be able to view the differences between the old and new posts easily.

Syntax highlighting:

To highlight particular lines, prefix each line with {%HIGHLIGHT}




All content is user-submitted.
The administrators of this site (kpaste.net) are not responsible for their content.
Abuse reports should be emailed to us at