Skip to content
Snippets Groups Projects
  1. May 23, 2014
    • Ben Langmuir's avatar
      Stopgap fix for finding module for a file mapped in the VFS · 68d890da
      Ben Langmuir authored
      If we lookup a path using its 'real' path first, we need to ensure that
      when we run header search we still use the VFS-mapped path or we will
      not be able to find the corresponding module for the header.
      
      The real problem is that we tie the name of a file to its underlying
      FileEntry, which is uniqued by inode, so we only ever get the first name
      it is looked up by. This doesn't work with modules, which rely on a
      specific file system structure.  I'm hoping to have time to write up a
      proposal for fixing this more permanently soon, but as a stopgap this
      patch updates the name of the file's directory if it comes from a VFS
      mapping.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@209534 91177308-0d34-0410-b5e6-96231b3b80d8
      68d890da
  2. May 22, 2014
  3. May 20, 2014
  4. May 06, 2014
  5. May 05, 2014
  6. Mar 07, 2014
  7. Mar 05, 2014
  8. Mar 04, 2014
  9. Mar 02, 2014
  10. Feb 28, 2014
  11. Feb 27, 2014
    • Ben Langmuir's avatar
      Add a 'use-external-names' option to VFS overlay files · e40e43d0
      Ben Langmuir authored
      When true, sets the name of the file to be the name from
      'external-contents'. Otherwise, you get the virtual path that the file
      was looked up by. This will not affect any non-virtual paths, or fully
      virtual paths (for which there is no reasonable 'external' name anyway).
      
      The setting is available globally, but can be overriden on a per-file
      basis.
      
      The goal is that this setting will control which path you see in debug
      info, diagnostics, etc. which are sensitive to which path is used. That
      will come in future patches that pass the name through to FileManager.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@202329 91177308-0d34-0410-b5e6-96231b3b80d8
      e40e43d0
  12. Feb 25, 2014
  13. Feb 24, 2014
  14. Feb 22, 2014
  15. Feb 20, 2014
  16. Feb 19, 2014
Loading