Skip to content
  1. Jul 25, 2013
    • Rui Ueyama's avatar
      [PECOFF] Add /include command line option. · fd50283c
      Rui Ueyama authored
      The /include command line option is equivalent to Unix --undefined
      option, which forces the linker to resolve the given symbol name
      as if it's an unresolved symbol in one of its input files. This feature
      is used to link an additional object file or a shared library that no
      input files refer to.
      
      llvm-svn: 187084
      fd50283c
  2. Jul 24, 2013
  3. Jul 23, 2013
  4. Jul 22, 2013
  5. Jul 20, 2013
  6. Jul 19, 2013
  7. Jul 18, 2013
  8. Jul 16, 2013
  9. Jul 15, 2013
  10. Jul 11, 2013
  11. Jul 09, 2013
    • Rui Ueyama's avatar
      [PECOFF][Writer] Compute the size of a chunk each time it's added rather than all at once. · cf68e2a1
      Rui Ueyama authored
      Contents of ".reloc" section depends on the addresses of other sections, so
      the section cannot be created until all the other sections are created and get
      their memory addresses (RVAs). That means that computation of section size
      needs to be at least two pass.
      
      Techynically there's no reason to compute it all at once, but instead we can
      compute the address of a section as added to the output file. Doing so helps
      us to create ".reloc" section.
      
      llvm-svn: 185902
      cf68e2a1
Loading