diff options
Diffstat (limited to 'gmon')
-rw-r--r-- | gmon/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/gmon/Makefile b/gmon/Makefile index 2a5bb5f..3c6f85d 100644 --- a/gmon/Makefile +++ b/gmon/Makefile @@ -32,6 +32,14 @@ CFLAGS-mcount.c := -fno-omit-frame-pointer # We cannot compile mcount.c with -pg because that would # create resursive calls. Just copy the normal static object. -$(objpfx)mcount.po: $(objpfx)mcount.o +# On systems where `profil' is not a system call, the same +# problem exists for the internal functions in profil.c. + +noprof := mcount +ifeq (,$(filter profil,$(unix-syscalls))) +noprof += profil +endif + +$(noprof:%=$(objpfx)%.po): %.po: %.o rm -f $@ ln $< $@ |