diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-09-16 22:20:45 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-09-16 22:20:45 +0530 |
commit | d330b980e9ee2349492087a279a9c7bf294f6b47 (patch) | |
tree | eb1abe30122a1f47f9968b7e576e6a822884570d /elf/Makefile | |
parent | 02657da2cf4457804ed938ee08b8316249126444 (diff) | |
download | glibc-d330b980e9ee2349492087a279a9c7bf294f6b47.tar.gz glibc-d330b980e9ee2349492087a279a9c7bf294f6b47.tar.xz glibc-d330b980e9ee2349492087a279a9c7bf294f6b47.zip |
Remove CFLAGS for interp.c
Replace it with including an auto-generated linker-runtime.h. Build-tested on x86_64 and found that there was no change in the generated code. * elf/Makefile (CFLAGS-interp.c): Remove. ($(elf-objpfx)runtime-linker.h): Generate header with linker path string. * elf/interp.c: Include generated runtime-linker.h
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/elf/Makefile b/elf/Makefile index e3bd69223a..94074f3e34 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -353,9 +353,16 @@ $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map) | $(AWK) '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }' mv -f $@.new $@ -# interp.c exists just to get this string into the libraries. -CFLAGS-interp.c = -D'RUNTIME_LINKER="$(rtlddir)/$(rtld-installed-name)"' -$(objpfx)interp.os: $(common-objpfx)config.make +# interp.c exists just to get the runtime linker path into libc.so. +$(objpfx)interp.os: $(elf-objpfx)runtime-linker.h + +$(elf-objpfx)runtime-linker.h: $(elf-objpfx)runtime-linker.st; @: +$(elf-objpfx)runtime-linker.st: $(common-objpfx)config.make + $(name-target-directory) + echo '#define RUNTIME_LINKER "$(rtlddir)/$(rtld-installed-name)"' \ + > ${@:st=T} + $(move-if-change) ${@:st=T} ${@:st=h} + touch $@ ifneq (ld.so,$(rtld-installed-name)) # Make sure ld.so.1 exists in the build directory so we can link |