mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
870 B

  1. A GCC cross compiler does not yield a libgcc_eh.so. The GCC and GlibC team
  2. should smoke their good stuff together (and the GlibC freaks be fet with a
  3. book about release management ...).
  4. - Rene Rebe <rene@rocklinux.org>
  5. --- glibc-2.3.4-2004-05-01/Makeconfig 2004-04-18 00:38:24.000000000 +0200
  6. +++ glibc-2.3.4-2004-05-01-fixed/Makeconfig 2004-05-03 23:25:31.000000000 +0200
  7. @@ -518,16 +518,16 @@
  8. ifndef gnulib
  9. ifneq ($(have-as-needed),yes)
  10. - libgcc_eh := -lgcc_eh
  11. + libgcc_eh :=
  12. else
  13. libgcc_eh := -Wl,--as-needed -lgcc_s -Wl,--no-as-needed
  14. endif
  15. ifneq ($(have-cc-with-libunwind),yes)
  16. gnulib := -lgcc $(libgcc_eh)
  17. - static-gnulib := -lgcc -lgcc_eh
  18. + static-gnulib := -lgcc $(libgcc_eh)
  19. else
  20. gnulib := -lgcc $(libgcc_eh) -lunwind
  21. - static-gnulib := -lgcc -lgcc_eh -lunwind
  22. + static-gnulib := -lgcc $(libgcc_eh) -lunwind
  23. endif
  24. endif
  25. ifeq ($(elf),yes)