summary refs log tree commit diff
path: root/pkgs/os-specific/darwin/usr-include
Commit message (Collapse)AuthorAge
* darwin.usr-include: set meta.platformsVladimír Čunát2017-08-27
| | | | | Otherwise scripts may try to evaluate it and that fails due to missing `stdenv.libc`.
* replace "Mac OS X" and "OS X" with "macOS"davidak2017-08-07
| | | | | | | | | | as it is the official name since 2016 https://en.wikipedia.org/wiki/Macintosh_operating_systems#Desktop exception are parts refering to older versions of macOS like "GUI support for Mac OS X 10.6 - 10.12. Note that Emacs 23 and later [...]"
* gcc: use special native system headers for darwinMatthew Bauer2016-09-15
Darwin systems need to be able to find CoreFoundation headers as well as libc headers. Somehow, gcc doesn't accept any "framework" parameters that would normally be used to include CoreFoundation in this situation. HACK: Instead, this adds a derivation that combines the two. The result works but probably not a good long term solution. ALTERNATIVES: Maybe sending patches in to GCC to allow "native-system-framework" configure flag to get this found.