From 868e579be6c533836731500b47fc6d6d2e8e5314 Mon Sep 17 00:00:00 2001 From: Eric Christopher Date: Tue, 17 Jun 2014 23:27:32 +0000 Subject: [PATCH] Add the coverage cflags to the link step as well to make sure that we link in the support libraries. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@211131 91177308-0d34-0410-b5e6-96231b3b80d8 --- Makefile.rules | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.rules b/Makefile.rules index 941797107c7..ff0a3e3f819 100644 --- a/Makefile.rules +++ b/Makefile.rules @@ -377,6 +377,7 @@ ifeq ($(ENABLE_COVERAGE),1) BuildMode := $(BuildMode)+Coverage CXX.Flags += -ftest-coverage -fprofile-arcs C.Flags += -ftest-coverage -fprofile-arcs + LD.Flags += -ftest-coverage -fprofile-arcs endif # If DISABLE_ASSERTIONS=1 is specified (make command line or configured), -- 2.34.1