Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
base: c2752f8228b2
Choose a base ref
...
head repository: NixOS/nixpkgs
compare: 2bb33130cc3a
Choose a head ref
  • 3 commits
  • 4 files changed
  • 2 contributors

Commits on Dec 30, 2016

  1. libc++3.7: fix to use with modern compilers

    Modern compiler will issue a following error whenever '#include <string>'
    is done:
    
    /nix/store/yxpwamjdapjcp53mmsdh1j2c9bc26h4k-libc++-3.7.1/include/c++/v1/string:1938:44:
    error: 'basic_string<_CharT, _Traits, _Allocator>' is missing exception specification 'noexcept(is_nothrow_copy_constructible<allocator_type>::value)'
    basic_string<_CharT, _Traits, _Allocator>::basic_string(const allocator_type& __a)
                                               ^
    /nix/store/yxpwamjdapjcp53mmsdh1j2c9bc26h4k-libc++-3.7.1/include/c++/v1/string:1326:40:
    note: previous declaration is here
        _LIBCPP_INLINE_VISIBILITY explicit basic_string(const allocator_type& __a)
                                           ^
    1 error generated.
    
    This happens because modern clang is more strict about checking
    exception specification for forward declaration and definition.
    
    http://llvm.org/viewvc/llvm-project/libcxx/trunk/include/string?r1=242056&r2=242623&diff_format=h
    veprbl committed Dec 30, 2016
    Configuration menu
    Copy the full SHA
    e9d60c5 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2017

  1. root: 6.04.18 -> 6.08.02

    This relies on
    e9d60c5 ('libc++3.7: fix to use with modern compilers')
    veprbl committed Jan 1, 2017
    Configuration menu
    Copy the full SHA
    c7bcb99 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #21541 from veprbl/libcpp37

    libc++3.7: fix to use with clang 3.9
    LnL7 committed Jan 1, 2017
    Configuration menu
    Copy the full SHA
    2bb3313 View commit details
    Browse the repository at this point in the history