Skip to content
  1. Nov 21, 2016
  2. Nov 20, 2016
  3. Nov 19, 2016
  4. Nov 18, 2016
  5. Nov 17, 2016
    • Simon Atanasyan's avatar
      [ELF][MIPS] Remove 'mips' word from MipsGotSection fields and methods names. NFC · b8bfec68
      Simon Atanasyan authored
      Also add new comments with MIPS GOT description.
      
      llvm-svn: 287264
      b8bfec68
    • Rafael Espindola's avatar
      Allow use define symbols to override linker defined ones. · dab02d4b
      Rafael Espindola authored
      I hit an internal linker script that was defining _DYNAMIC instead of
      letting the linker do it. It turns out that both bfd and gold allow
      that.
      
      This is pretty easy to implement, just make the linker defined symbol
      weak. This should have no impact in the case where there is no user
      defined symbol: The visibility is hidden, which causes the output to
      still be local.
      
      llvm-svn: 287260
      dab02d4b
    • Rui Ueyama's avatar
      Allow SIZEOF() command on nonexistent section. · edf75e79
      Rui Ueyama authored
      Linker script doesn't create a section if it has no content. So the following
      script doesn't create .norelocs section if it doesn't have any .rel* sections.
      
        .norelocs : { *(.rel*) }
      
      Later, if you assert that the size of .norelocs is 0, LLD printed out
      an error message, because it didn't allow calling SIZEOF() on nonexistent
      sections.
      
      This patch allows SIZEOF() on nonexistent sections, so that you can do
      something like this.
      
        ASSERT(SIZEOF(.norelocs), "shouldn't contain .rel sections!")
      
      Note that this behavior is compatible with GNU.
      
      Differential Revision: https://reviews.llvm.org/D26810
      
      llvm-svn: 287257
      edf75e79
Loading