diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-18 20:37:59 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-11-18 20:37:59 +0000 |
commit | 31ae4299f571ac20578da77e113c9bc882b27c18 (patch) | |
tree | 80eb897051df5035037b4208dd897cc093c7fea9 /ldso | |
parent | 5c41b5d413d0e94bbbb536429dd7de3a2b75301e (diff) |
Add info to CFLAGS about lib we are building
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/ldso/Makefile.in | 4 | ||||
-rw-r--r-- | ldso/libdl/Makefile.in | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ldso/ldso/Makefile.in b/ldso/ldso/Makefile.in index 0bf5c02ed..78979f020 100644 --- a/ldso/ldso/Makefile.in +++ b/ldso/ldso/Makefile.in @@ -5,12 +5,12 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CFLAGS-ldso := -DNOT_IN_libc #-DIS_IN_rtld +CFLAGS-ldso := -DNOT_IN_libc -DIS_IN_rtld $(SSP_DISABLE_FLAGS) # This stuff will not work with -fomit-frame-pointer CFLAGS-ldso += -fno-omit-frame-pointer -CFLAGS-ldso += -I$(top_builddir)ldso/include -I$(top_builddir)ldso/ldso $(SSP_DISABLE_FLAGS) +CFLAGS-ldso += -I$(top_builddir)ldso/include -I$(top_builddir)ldso/ldso CFLAGS-ldso += -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" -DUCLIBC_LDSO=\"$(UCLIBC_LDSO)\" ifeq ($(SUPPORT_LD_DEBUG),y) diff --git a/ldso/libdl/Makefile.in b/ldso/libdl/Makefile.in index 6622226c5..77f18909c 100644 --- a/ldso/libdl/Makefile.in +++ b/ldso/libdl/Makefile.in @@ -6,9 +6,9 @@ # Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. # -CFLAGS-libdl := -DNOT_IN_libc +CFLAGS-libdl := -DNOT_IN_libc -DIS_IN_libdl $(SSP_ALL_CFLAGS) -CFLAGS-libdl +=-I$(top_builddir)ldso/include -I$(top_builddir)ldso/ldso $(SSP_ALL_CFLAGS) +CFLAGS-libdl +=-I$(top_builddir)ldso/include -I$(top_builddir)ldso/ldso CFLAGS-libdl += -DUCLIBC_RUNTIME_PREFIX=\"$(RUNTIME_PREFIX)\" |