diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-12 00:41:38 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2021-12-12 00:42:12 +0100 |
commit | 26803075e4e7c0468965ed0d037345288aae99de (patch) | |
tree | 84f3cd8bfe9a4cabd7374fd21f04f4511fec94be /gmon | |
parent | ea5814467a02c9d2d7608b6445c5d60e2a81d3ee (diff) | |
download | glibc-26803075e4e7c0468965ed0d037345288aae99de.tar.gz glibc-26803075e4e7c0468965ed0d037345288aae99de.tar.xz glibc-26803075e4e7c0468965ed0d037345288aae99de.zip |
hurd: Fix gmon-static
We need to use crt0 for gmon-static too.
Diffstat (limited to 'gmon')
-rw-r--r-- | gmon/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/gmon/Makefile b/gmon/Makefile index 7b7b854327..7d63a9dad8 100644 --- a/gmon/Makefile +++ b/gmon/Makefile @@ -50,14 +50,14 @@ CFLAGS-mcount.c := -fno-omit-frame-pointer CFLAGS-tst-gmon.c := -fno-omit-frame-pointer -pg tst-gmon-no-pie = yes -CRT-tst-gmon := $(csu-objpfx)gcrt1.o +CRT-tst-gmon := $(csu-objpfx)g$(start-installed-name) tst-gmon-ENV := GMON_OUT_PREFIX=$(objpfx)tst-gmon.data ifeq ($(run-built-tests),yes) tests-special += $(objpfx)tst-gmon-gprof.out endif CFLAGS-tst-gmon-static.c := $(PIE-ccflag) -fno-omit-frame-pointer -pg -CRT-tst-gmon-static := $(csu-objpfx)gcrt1.o +CRT-tst-gmon-static := $(csu-objpfx)g$(static-start-installed-name) tst-gmon-static-no-pie = yes tst-gmon-static-ENV := GMON_OUT_PREFIX=$(objpfx)tst-gmon-static.data ifeq ($(run-built-tests),yes) @@ -65,7 +65,7 @@ tests-special += $(objpfx)tst-gmon-static-gprof.out endif CFLAGS-tst-gmon-pie.c := $(PIE-ccflag) -fno-omit-frame-pointer -pg -CRT-tst-gmon-pie := $(csu-objpfx)gcrt1.o +CRT-tst-gmon-pie := $(csu-objpfx)g$(start-installed-name) tst-gmon-pie-ENV := GMON_OUT_PREFIX=$(objpfx)tst-gmon-pie.data ifeq ($(run-built-tests),yes) tests-special += $(objpfx)tst-gmon-pie-gprof.out @@ -73,7 +73,7 @@ endif ifeq (yes,$(enable-static-pie)) CFLAGS-tst-gmon-static-pie.c := $(PIE-ccflag) -fno-omit-frame-pointer -pg -CRT-tst-gmon-static-pie := $(csu-objpfx)grcrt1.o +CRT-tst-gmon-static-pie := $(csu-objpfx)gr$(static-start-installed-name) tst-gmon-static-pie-ENV := GMON_OUT_PREFIX=$(objpfx)tst-gmon-static-pie.data ifeq ($(run-built-tests),yes) tests-special += $(objpfx)tst-gmon-static-pie-gprof.out |