lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lib and doc: Use "libSystem" as identifier for that libc in platforms

+3 -3
+1 -1
doc/cross-compilation.xml
··· 128 128 <listitem> 129 129 <para> 130 130 This is a string identifying the standard C library used. 131 - Valid identifiers include "glibc" for GNU libc, "libsystem" for Darwin's Libsystem, and "uclibc" for µClibc. 131 + Valid identifiers include "glibc" for GNU libc, "libSystem" for Darwin's Libsystem, and "uclibc" for µClibc. 132 132 It should probably be refactored to use the module system, like <varname>parse</varname>. 133 133 </para> 134 134 </listitem>
+2 -2
lib/systems/examples.nix
··· 96 96 iphone64 = { 97 97 config = "aarch64-apple-darwin14"; 98 98 arch = "arm64"; 99 - libc = "libsystem"; 99 + libc = "libSystem"; 100 100 platform = {}; 101 101 }; 102 102 103 103 iphone32 = { 104 104 config = "arm-apple-darwin10"; 105 105 arch = "armv7-a"; 106 - libc = "libsystem"; 106 + libc = "libSystem"; 107 107 platform = {}; 108 108 }; 109 109