Skip to content
  1. Feb 27, 2017
    • Rui Ueyama's avatar
      Move SymbolTable<ELFT>::Sections out of the class. · 536a2670
      Rui Ueyama authored
      The list of all input sections was defined in SymbolTable class for a
      historical reason. The list itself is not a template. However, because
      SymbolTable class is a template, we needed to pass around ELFT to access
      the list. This patch moves the list out of the class so that it doesn't
      need ELFT.
      
      llvm-svn: 296309
      536a2670
  2. Feb 25, 2017
  3. Feb 24, 2017
  4. Feb 23, 2017
  5. Feb 22, 2017
  6. Feb 21, 2017
  7. Feb 14, 2017
  8. Feb 13, 2017
  9. Feb 08, 2017
  10. Feb 02, 2017
  11. Jan 30, 2017
  12. Jan 29, 2017
  13. Jan 27, 2017
    • Rafael Espindola's avatar
      Fix and simplify the reporting of undefined symbols. · 403b093e
      Rafael Espindola authored
      Now reportUndefined only has to look at Config->UnresolvedSymbols and
      the symbol. getUnresolvedSymbolOption does all the hard work of
      mapping options like -shared and -z defs to one of the
      UnresolvedPolicy enum entries.
      
      The critical fix is that now "-z defs --warn-unresolved-symbols" only
      warns.
      
      llvm-svn: 293290
      403b093e
  14. Jan 26, 2017
  15. Jan 25, 2017
    • Rui Ueyama's avatar
      Fix typo. · bfe02642
      Rui Ueyama authored
      llvm-svn: 293100
      bfe02642
    • Rafael Espindola's avatar
      Change the --retain-symbols-file implementation. · c0fc2530
      Rafael Espindola authored
      It now uses the same infrastructure as symbol versions. This fixes us
      creating a dynamic relocation without a corresponding dynamic symbol.
      
      This also means that unlike gold and bfd we keep a STB_LOCAL in the
      static symbol table. It seems an odd feature to offer precise control
      over what is in a symbol table that is not used by the dynamic
      linker. We can bring this back if needed, but it would probably be
      better to just have --discard option that tells the linker to keep in
      the static symbol table only what is in the dynamic one.
      
      Should fix the eog build.
      
      llvm-svn: 293093
      c0fc2530
  16. Jan 24, 2017
    • Rui Ueyama's avatar
      Do not allocate space for common symbols with -r · b2a23cf3
      Rui Ueyama authored
      Currently ld.lld -r allocates space for common symbols, whereas ld.bfd
      -r doesn't.  As a result the OpenBSD makefile bits for creating libraries
      fail as they use ld -X -r to strip local symbols, which results in
      duplicate symbol errors because space for the common symbols has been
      allocated.
      
      The diff also implements the --define-commons option such that allocation
      of commons can be forced even if -r is used.
      
      Patch by Mark Kettenis.
      
      llvm-svn: 292878
      b2a23cf3
  17. Jan 15, 2017
  18. Jan 13, 2017
    • Rafael Espindola's avatar
      Implement -Map. · 1ebfc59c
      Rafael Espindola authored
      The format is not exactly the same as the one in bfd since bfd always
      follows a linker script and prints it along.
      
      llvm-svn: 291958
      1ebfc59c
  19. Jan 12, 2017
  20. Jan 09, 2017
  21. Jan 06, 2017
  22. Dec 23, 2016
  23. Dec 20, 2016
Loading