1From 155ae12f7809e387a379703d8c09f227e430336d Mon Sep 17 00:00:00 2001
2From: Khem Raj <raj.khem@gmail.com>
3Date: Fri, 14 Jul 2017 13:00:16 -0700
4Subject: [PATCH] Remove -pg from profile_CFLAGS
5
6musl fails to link with missing gcrt1.o
7
8Signed-off-by: Khem Raj <raj.khem@gmail.com>
9Signed-off-by: Mingli Yu <mingli.yu@windriver.com>
10
11---
12 src/Makefile.am | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15diff --git a/src/Makefile.am b/src/Makefile.am
16index 11d3e17..4058cff 100644
17--- a/src/Makefile.am
18+++ b/src/Makefile.am
19@@ -58,9 +58,9 @@ if ENABLE_PROFILING
20 iperf3_profile_SOURCES  = main.c \
21                           $(libiperf_la_SOURCES)
22
23-iperf3_profile_CFLAGS   = -pg -g
24+iperf3_profile_CFLAGS   = -g
25 iperf3_profile_LDADD    = libiperf.la
26-iperf3_profile_LDFLAGS  = -pg -g
27+iperf3_profile_LDFLAGS  = -g
28 endif
29
30 # Specify the sources and various flags for the test cases
31