svn commit: r361929 - stable/12/usr.sbin/pmc
Mark Johnston
markj at FreeBSD.org
Mon Jun 8 15:27:45 UTC 2020
Author: markj
Date: Mon Jun 8 15:27:44 2020
New Revision: 361929
URL: https://svnweb.freebsd.org/changeset/base/361929
Log:
MFC r359601 (by brooks):
pmc: diable position-independent builds, they fail to link on amd64
PR: 245189
Modified:
stable/12/usr.sbin/pmc/Makefile
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/usr.sbin/pmc/Makefile
==============================================================================
--- stable/12/usr.sbin/pmc/Makefile Mon Jun 8 14:00:11 2020 (r361928)
+++ stable/12/usr.sbin/pmc/Makefile Mon Jun 8 15:27:44 2020 (r361929)
@@ -10,6 +10,9 @@ CXXFLAGS+= -O0
CXXSTD= c++14
CWARNFLAGS.gcc+= -Wno-redundant-decls
+# Does not link when built position-independent.
+MK_PIE=no
+
LIBADD= kvm pmc m ncursesw pmcstat elf
SRCS= pmc.c pmc_util.c cmd_pmc_stat.c \
More information about the svn-src-stable-12
mailing list