Skip to content
Snippets Groups Projects
  1. Dec 19, 2016
  2. Dec 15, 2016
  3. Dec 14, 2016
  4. Dec 13, 2016
  5. Dec 12, 2016
  6. Dec 11, 2016
  7. Dec 09, 2016
    • becker33's avatar
      Make targets an attribute of compilers (#2500) · 3f8613ae
      becker33 authored
      * Make targets an attribute of compilers, similar to OS. Allows users to use `spack compiler find` to add compilers for the same platform/os but different targets when spack is installed on a file system mounted on machines with different targets.
      
      * Changed get_compilers() method to treat old compilers with no target as target='any'
      
      * flake8 changes
      
      * Address change requests for comments/code clarity
      3f8613ae
  8. Dec 08, 2016
  9. Dec 07, 2016
  10. Dec 05, 2016
    • Todd Gamblin's avatar
      Use JSON for the database instead of YAML. (#2189) · 41b8f31b
      Todd Gamblin authored
      * Use JSON for the database instead of YAML.
      
      - JSON is much faster than YAML *and* can preserve ordered keys.
        - 170x+ faster than Python YAML when using unordered dicts
        - 55x faster than Python YAML (both using OrderedDicts)
        - 8x faster than C YAML (with OrderedDicts)
      
      - JSON is built into Python, unlike C YAML, so doesn't add a dependency.
      - Don't need human readability for the package database.
      - JSON requires no major changes to the code -- same object model as YAML.
      - add to_json, from_json methods to spec.
      
      * Add tests to ensure JSON and YAML don't need to be ordered in DB.
      
      * Write index.json first time it's not found instead of requiring reindex.
      
      * flake8 bug.
      41b8f31b
    • Adam J. Stewart's avatar
      Allow spack create to handle packages with period in name (#2351) · 161d6205
      Adam J. Stewart authored
      * Allow spack create to handle packages with period in name
      
      * Update tests to handle new package name detection scheme
      161d6205
    • Todd Gamblin's avatar
  11. Dec 03, 2016
    • Joseph Ciurej's avatar
      Fixes to Handling Multiple Architectures (#2261) · 552b4eae
      Joseph Ciurej authored
      * Added some notes about how multiarch detection could be fixed.
      
      * Implemented a preliminary version of the "spack.spec.ArchSpec" class.
      
      * Updated the "spack.spec.Spec" class to use "ArchSpec" instead of "Arch".
      
      * Fixed a number of small bugs in the "spack.spec.ArchSpec" class.
      
      * Fixed the 'Concretizer.concretize_architecture' method so that it uses the new architecture specs.
      
      * Updated the package class to properly use arch specs.
      Removed a number of unused architecture functions.
      
      * Fixed up a number of bugs that were causing the regression tests to fail.
      Added a couple of additional regression tests related to architecture parsing/specification.
      Fixed a few bugs with setting reserved os/target values on "ArchSpec" objects.
      Removed a number of unnecessary functions in the "spack.architecture" and "spack.concretize" modules.
      
      * Fixed a few bugs with reading architecture information from specs.
      Updated the tests to use a uniform architecture to improve reliability.
      Fixed a few minor style issues.
      
      * Adapted the compiler component of Spack to use arch specs.
      
      * Implemented more test cases for the extended architecture spec features.
      Improved error detection for multiple arch components in a spec.
      
      * Fix for backwards compatibility with v0.8 and prior
      
      * Changed os to unknown for compatibility specs
      
      * Use `spack09` instead of `spackcompat` for the platform of old specs.
      552b4eae
  12. Dec 01, 2016
  13. Nov 29, 2016
  14. Nov 24, 2016
    • Andrey Prokopenko's avatar
      Adding pic_flag property to compilers (#2375) · 11bfccd5
      Andrey Prokopenko authored
      Different compilers have different flags for PIC (position-independent
      code). This patch provides a common ground to accessing it inside specs.
      
      See discussions in #508 and #2373. This patch does not address the issue
      of mixed compilers as mentioned in #508.
      11bfccd5
    • Peter Scheibel's avatar
      Add dynamic search option for package sources (#2270) · 261d36e8
      Peter Scheibel authored
      Package provides a 'list_url' attribute which may be searched to find
      download links. #1822 created a slowdown for all tests by always
      searching this URL. This reenables dynamic search only in cases where
      all other fetchers fail. This also only enables dynamic search when
      'mirror_only' is set to false.
      261d36e8
  15. Nov 23, 2016
  16. Nov 22, 2016
  17. Nov 17, 2016
  18. Nov 16, 2016
Loading