diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-05-22 16:00:50 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-05-24 13:13:46 -0700 |
commit | c14874927b499ddfdbb03745bb32bfc778b8595f (patch) | |
tree | a07ace4f46694be67780cdf4765044f80ac4f729 /Makerules | |
parent | d6c33fda03457ca8ca87a562fa2681af16ca4ea5 (diff) | |
download | glibc-c14874927b499ddfdbb03745bb32bfc778b8595f.tar glibc-c14874927b499ddfdbb03745bb32bfc778b8595f.tar.gz glibc-c14874927b499ddfdbb03745bb32bfc778b8595f.tar.bz2 glibc-c14874927b499ddfdbb03745bb32bfc778b8595f.zip |
syscalls.list support for vDSO IFUNCs, use it for x32 gettimeofday and time.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -366,6 +366,7 @@ compile.c = $(CC) $< -c $(CFLAGS) $(CPPFLAGS) compile.cc = $(CXX) $< -c $(CXXFLAGS) $(CPPFLAGS) compile.S = $(CC) $< -c $(CPPFLAGS) $(S-CPPFLAGS) \ $(ASFLAGS) $(ASFLAGS-$(suffix $@)) +COMPILE.c = $(CC) -c $(CFLAGS) $(CPPFLAGS) COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \ $(ASFLAGS) $(ASFLAGS-$(suffix $@)) @@ -374,6 +375,9 @@ COMPILE.S = $(CC) -c $(CPPFLAGS) $(S-CPPFLAGS) \ # together. You can't compile the C library with such a compiler. OUTPUT_OPTION = -o $@ +# This is the end of the pipeline for compiling generated C code. +compile-stdin.c = $(COMPILE.c) -o $@ -x c - $(compile-mkdep-flags) + # We need the $(CFLAGS) to be in there to have the right predefines during # the dependency run for C sources. But having it for assembly sources can # get the wrong predefines. |