Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Nov 2018 19:51:26 +0000 (UTC)
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r340300 - head/lib/clang/libllvm
Message-ID:  <201811091951.wA9JpQ4G069751@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: emaste
Date: Fri Nov  9 19:51:26 2018
New Revision: 340300
URL: https://svnweb.freebsd.org/changeset/base/340300

Log:
  libllvm: Move SampleProfWriter to SRCS_MIN
  
  It is required by llvm-profdata, now built by default under the
  LLVM_COV knob.  The additional complexity that would come from avoiding
  building it if CLANG_EXTRAS and LLVM_COV are both disabled is not worth
  the small savings in build time.
  
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/lib/clang/libllvm/Makefile

Modified: head/lib/clang/libllvm/Makefile
==============================================================================
--- head/lib/clang/libllvm/Makefile	Fri Nov  9 19:17:25 2018	(r340299)
+++ head/lib/clang/libllvm/Makefile	Fri Nov  9 19:51:26 2018	(r340300)
@@ -683,7 +683,7 @@ SRCS_MIN+=	ProfileData/InstrProfWriter.cpp
 SRCS_MIN+=	ProfileData/ProfileSummaryBuilder.cpp
 SRCS_MIN+=	ProfileData/SampleProf.cpp
 SRCS_MIN+=	ProfileData/SampleProfReader.cpp
-SRCS_EXT+=	ProfileData/SampleProfWriter.cpp
+SRCS_MIN+=	ProfileData/SampleProfWriter.cpp
 SRCS_MIN+=	Support/APFloat.cpp
 SRCS_MIN+=	Support/APInt.cpp
 SRCS_MIN+=	Support/APSInt.cpp



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