Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 30 Apr 2015 15:08:16 +0000
From:      "emaste (Ed Maste)" <phabric-noreply@FreeBSD.org>
To:        freebsd-toolchain@freebsd.org
Subject:   [Differential] [Commented On] D2408: Add ELF Tool Chain's c++filt to the build
Message-ID:  <7fe93998747d1c634c8b04c67f88ff09@localhost.localdomain>
In-Reply-To: <differential-rev-PHID-DREV-p3szawadf7l7266bqfgt-req@FreeBSD.org>
References:  <differential-rev-PHID-DREV-p3szawadf7l7266bqfgt-req@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
emaste added a comment.

Oh - we also need either:

  diff --git a/gnu/usr.bin/cc/Makefile b/gnu/usr.bin/cc/Makefile
  index abc9876..12ee7f8 100644
  --- a/gnu/usr.bin/cc/Makefile
  +++ b/gnu/usr.bin/cc/Makefile
  @@ -12,7 +12,10 @@ SUBDIR+= cpp
   .endif
   
   .if ${MK_CXX} != "no"
  -SUBDIR+= cc1plus c++ c++filt
  +SUBDIR+= cc1plus c++
  +.if ${MK_ELFTOOLCHAIN_TOLOLS} != "no"
  +SUBDIR+= c++filt
  +.endif
   .endif
   
   .if ${MK_GCOV} != "no"

or

  --- a/usr.bin/Makefile
  +++ b/usr.bin/Makefile
  @@ -238,7 +238,9 @@ SUBDIR+=    ee
   
   .if ${MK_ELFTOOLCHAIN_TOOLS} != "no"
   _addr2line=    addr2line
  +.if ${MK_GCC} != "no" && ${MK_CXX} != "no"
   _cxxfilt=      cxxfilt
  +.endif
   _elfcopy=      elfcopy
   _nm=           nm
   _readelf=      readelf


REVISION DETAIL
  https://reviews.freebsd.org/D2408

EMAIL PREFERENCES
  https://reviews.freebsd.org/settings/panel/emailpreferences/

To: emaste, brooks
Cc: freebsd-toolchain



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?7fe93998747d1c634c8b04c67f88ff09>