diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2009-10-17 00:03:53 +0200 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2009-11-22 11:20:12 -0800 |
commit | 4c8c92d95b2276890f00a27c8a47dee269740c11 (patch) | |
tree | 85f5524b18197bdd35e0f9f2a7d2c13a7909e954 | |
parent | 9a0c2817e8011d3ce5de9fd1488cf28febce5f2b (diff) | |
download | uClibc-alpine-4c8c92d95b2276890f00a27c8a47dee269740c11.tar.bz2 uClibc-alpine-4c8c92d95b2276890f00a27c8a47dee269740c11.tar.xz |
rm uClibc_arch_features.h on install
uClibc_arch_features.h is included already by libc-symbols.h.
If gcc needs it, fix gcc.
Signed-off-by: Peter S. Mazinger <ps.m@gmx.net>
Signed-off-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
-rw-r--r-- | Makefile.in | 3 | ||||
-rw-r--r-- | include/features.h | 3 |
2 files changed, 1 insertions, 5 deletions
diff --git a/Makefile.in b/Makefile.in index a85c99e3e..859b6fe14 100644 --- a/Makefile.in +++ b/Makefile.in @@ -212,6 +212,7 @@ $(top_builddir)extra/scripts/unifdef: $(top_srcdir)extra/scripts/unifdef.c HEADERS_RM- := \ dl-osinfo.h \ _lfs_64.h \ + bits/uClibc_arch_features.h \ bits/kernel_sigaction.h \ bits/kernel_stat.h \ bits/kernel_types.h \ @@ -224,8 +225,6 @@ HEADERS_RM- := \ bits/sigcontextinfo.h \ bits/stackinfo.h \ tls.h - # gcc 4.3.1 needs it, dont rm: - #bits/uClibc_arch_features.h HEADERS_RM-$(UCLIBC_HAS_FLOATS) += \ complex.h \ fpu_control.h \ diff --git a/include/features.h b/include/features.h index 66447e2ed..8a39cc8e0 100644 --- a/include/features.h +++ b/include/features.h @@ -34,9 +34,6 @@ #define __need_uClibc_config_h #include <bits/uClibc_config.h> #undef __need_uClibc_config_h -#ifdef _LIBC -#include <bits/uClibc_arch_features.h> -#endif /* For uClibc, always optimize for size -- this should disable * a lot of expensive inlining... |