300-let-optimized-stringops-override-default-ones.patch 1.0 KB

12345678910111213141516171819202122232425262728
  1. From 7b2f125425cf777e7937b533217588e27952b87d Mon Sep 17 00:00:00 2001
  2. From: Haavard Skinnemoen <[email protected]>
  3. Date: Mon, 7 Aug 2006 11:12:50 +0200
  4. Subject: [PATCH] Let optimized stringops override default ones
  5. The default, slow stringops must be archived _before_ the optimized
  6. stringops if there is to be any point doing the optimizations in the
  7. first place.
  8. ---
  9. libc/Makefile | 2 +-
  10. 1 files changed, 1 insertions(+), 1 deletions(-)
  11. diff --git a/libc/Makefile b/libc/Makefile
  12. index 31e4bab..687eac5 100644
  13. --- a/libc/Makefile
  14. +++ b/libc/Makefile
  15. @@ -59,7 +59,7 @@ # will evaluate to no files :(.
  16. $(AR) dN 2 $(LIBNAME) $$objs && \
  17. $(AR) dN 2 $(LIBNAME) $$objs
  18. @for objfile in obj.signal \
  19. - obj.string.generic obj.string.$(TARGET_ARCH) obj.string \
  20. + obj.string obj.string.generic obj.string.$(TARGET_ARCH) \
  21. obj.sysdeps.common obj.sysdeps.$(TARGET_ARCH) ; do \
  22. if [ -e $$objfile ] ; then \
  23. if [ "$(MAKE_IS_SILENT)" = "n" ] ; then \
  24. --
  25. 1.4.1.1