1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

Merge pull request #26269 from obsidiansystems/libSystem

lib and doc: Use "libSystem" as identifier for that libc in platforms
This commit is contained in:
John Ericson 2017-05-31 00:49:58 -04:00 committed by GitHub
commit 4e376cce7e
2 changed files with 3 additions and 3 deletions

View file

@ -128,7 +128,7 @@
<listitem>
<para>
This is a string identifying the standard C library used.
Valid identifiers include "glibc" for GNU libc, "libsystem" for Darwin's Libsystem, and "uclibc" for µClibc.
Valid identifiers include "glibc" for GNU libc, "libSystem" for Darwin's Libsystem, and "uclibc" for µClibc.
It should probably be refactored to use the module system, like <varname>parse</varname>.
</para>
</listitem>

View file

@ -96,14 +96,14 @@ rec {
iphone64 = {
config = "aarch64-apple-darwin14";
arch = "arm64";
libc = "libsystem";
libc = "libSystem";
platform = {};
};
iphone32 = {
config = "arm-apple-darwin10";
arch = "armv7-a";
libc = "libsystem";
libc = "libSystem";
platform = {};
};