diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | gmon/Makefile | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -1,5 +1,10 @@ 2017-08-15 Florian Weimer <fweimer@redhat.com> + * gmon/Makefile (tests-special): Add tst-gmon-prof only if + run-built-tests. + +2017-08-15 Florian Weimer <fweimer@redhat.com> + Remove BROKEN_THREAD_SIGNALS support for LinuxThreads. * sysdeps/pthread/aio_misc.c (__aio_enqueue_request): Remove BROKEN_THREAD_SIGNALS code. diff --git a/gmon/Makefile b/gmon/Makefile index 947e6b5905..39f11acec2 100644 --- a/gmon/Makefile +++ b/gmon/Makefile @@ -42,7 +42,9 @@ CFLAGS-tst-gmon.c := -pg LDFLAGS-tst-gmon := $(no-pie-ldflag) CRT-tst-gmon := $(csu-objpfx)gcrt1.o tst-gmon-ENV := GMON_OUT_PREFIX=$(objpfx)tst-gmon.data +ifeq ($(run-built-tests),yes) tests-special += $(objpfx)tst-gmon-gprof.out +endif include ../Rules |