lib/systems: Update iOS examples

The commented-out configs are @shlevy's old known-good ones. I changed
them as needed to play nice with lib.systems.parse but did not test so
leaving them as comments for now.
This commit is contained in:
John Ericson 2018-05-01 01:14:58 -04:00
parent 0c3efb9ba0
commit 9a845de873

View file

@ -88,16 +88,36 @@ rec {
# #
iphone64 = { iphone64 = {
config = "aarch64-apple-darwin14"; config = "aarch64-apple-ios";
arch = "arm64"; # config = "aarch64-apple-darwin14";
libc = "libSystem"; sdkVer = "10.2";
useiOSPrebuilt = true;
platform = {}; platform = {};
}; };
iphone32 = { iphone32 = {
config = "arm-apple-darwin10"; config = "armv7-apple-ios";
arch = "armv7-a"; # config = "arm-apple-darwin10";
libc = "libSystem"; sdkVer = "10.2";
useiOSPrebuilt = true;
platform = {};
};
iphone64-simulator = {
config = "x86_64-apple-ios";
# config = "x86_64-apple-darwin14";
sdkVer = "10.2";
useiOSPrebuilt = true;
isiPhoneSimulator = true;
platform = {};
};
iphone32-simulator = {
config = "i686-apple-ios";
# config = "i386-apple-darwin11";
sdkVer = "10.2";
useiOSPrebuilt = true;
isiPhoneSimulator = true;
platform = {}; platform = {};
}; };