Skip to content
Snippets Groups Projects
  1. Jul 24, 2020
    • Brad King's avatar
      bootstrap: Fix support for Intel compiler with modern GNU system compiler · 79646628
      Brad King authored
      On systems with older GNU system compilers, the Intel C++ compiler does
      not define `__cplusplus` to any version newer than C++11.  This
      prevented `bootstrap` from detecting that a given C++ standard flag has
      enabled C++17 mode in the compiler.  In commit 033a4b12 (bootstrap:
      Extend C++17 check for our cast functions, 2019-12-14,
      v3.17.0-rc1~291^2) we added a preprocessor condition to attempt to
      detect C++17 mode in the Intel compiler on such systems by looking
      for `__cpp_if_constexpr`.  However, on systems with a modern GNU
      system compiler, that definition is available even in C++11 mode.
      
      Switch to using `__cpp_deduction_guides` to detect C++17 mode for the
      Intel C++ compiler.  That seems to be defined exclusively in C++17 mode
      regardless of the version of the system compiler.
      
      Fixes: #21013
      79646628
  2. May 28, 2020
  3. May 27, 2020
  4. May 25, 2020
  5. May 24, 2020
  6. May 22, 2020
  7. May 21, 2020
  8. May 20, 2020
  9. May 19, 2020
  10. May 18, 2020
  11. May 15, 2020
  12. May 14, 2020
  13. May 13, 2020
  14. May 12, 2020
Loading