diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-05-25 13:40:20 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-25 13:40:20 -0700 |
commit | 3a097cc7a18309c864186c1b864b90889d2a45e9 (patch) | |
tree | 90867caf9bc281dee470b566c7a3188ce86d20c1 /elf | |
parent | 21708942c9b115a91dc03318a5f9e14328c5a71e (diff) | |
download | glibc-3a097cc7a18309c864186c1b864b90889d2a45e9.tar.gz glibc-3a097cc7a18309c864186c1b864b90889d2a45e9.tar.xz glibc-3a097cc7a18309c864186c1b864b90889d2a45e9.zip |
Add --enable-systemtap configuration to define static probe points.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/Makefile | 3 | ||||
-rw-r--r-- | elf/rtld-Rules | 5 |
2 files changed, 4 insertions, 4 deletions
diff --git a/elf/Makefile b/elf/Makefile index f6c6fb4644..0c26ce545a 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -422,7 +422,8 @@ CFLAGS-dl-cache.c = $(SYSCONF-FLAGS) CFLAGS-cache.c = $(SYSCONF-FLAGS) CFLAGS-rtld.c = $(SYSCONF-FLAGS) -CPPFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),-DNOT_IN_libc=1 -DIS_IN_rtld=1) +CPPFLAGS-.os += $(if $(filter $(@F),$(patsubst %,%.os,$(all-rtld-routines))),\ + -DNOT_IN_libc=1 -DIS_IN_rtld=1 -DIN_LIB=rtld) test-modules = $(addprefix $(objpfx),$(addsuffix .so,$(strip $(modules-names)))) generated += $(addsuffix .so,$(strip $(modules-names))) diff --git a/elf/rtld-Rules b/elf/rtld-Rules index 6526aec19a..1e03332ca1 100644 --- a/elf/rtld-Rules +++ b/elf/rtld-Rules @@ -1,7 +1,6 @@ # Subroutine makefile for compiling libc modules linked into dynamic linker. -# Copyright (C) 2002,2003,2005,2006,2008,2010,2011 -# Free Software Foundation, Inc. +# Copyright (C) 2002-2012 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -130,6 +129,6 @@ ifdef rtld-depfiles endif # This here is the whole point of all the shenanigans. -rtld-CPPFLAGS := -DNOT_IN_libc=1 -DIS_IN_rtld=1 +rtld-CPPFLAGS := -DNOT_IN_libc=1 -DIS_IN_rtld=1 -DIN_LIB=rtld endif |