Lands the full VM/compiler-API arc on branch reify (701/0 both gates): - abi(.compiler) ABI replaces abi(.zig) extern compiler + the fake #library "compiler"; bodiless decl = compiler-API surface, bodied = user compiler-domain fn (lowered for VM eval, emit-skipped). - out is a plain sx fn (libc write) — the out builtin deleted; the VM handles it via host-FFI. trace_resolve + interp_print_frames ported. - 4B VM-native diagnostics: 1179/1180 render proper comptime type construction failed: under strict. - S5a: build_options/set_post_link_callback on abi(.compiler) with BuildConfig threaded into the VM (green intermediate). - 0522 fixed (describe(args: []Type)); regression 0638. Strict deletion-gate down to 4 compiler_call bails (1609/1614/1615/1616) + 1654 (legitimate unresolvable-symbol diagnostic).
59 lines
2.4 KiB
Plaintext
59 lines
2.4 KiB
Plaintext
// iOS *device* end-to-end exercise for `platform.bundle`. Distinct from
|
|
// 121-ios-sim-bundle.sx because the device path adds three steps that
|
|
// don't run on the simulator: provisioning profile embed, entitlements
|
|
// extraction (`security cms` + `plutil` pipeline resolving the
|
|
// wildcard `<TEAM>.*` → `<TEAM>.<bundle_id>`), and codesign with
|
|
// `--entitlements`.
|
|
//
|
|
// Build:
|
|
// sx build --target ios examples/122-ios-device-bundle.sx -o /tmp/SxDeviceProbe
|
|
//
|
|
// Install + launch (requires the device UDID to be on the profile):
|
|
// xcrun devicectl device install app --device <name> /tmp/SxDeviceProbe.app
|
|
// xcrun devicectl device process launch --device <name> co.swipelab.sxprobe
|
|
//
|
|
// The bundle id (`co.swipelab.sxprobe`) and codesign identity below
|
|
// match the test team's wildcard `SwipeS32DevProfile.mobileprovision`.
|
|
// Update the three set_* values to your own identity / profile / id to
|
|
// re-exercise on a different developer account.
|
|
|
|
#import "modules/std.sx";
|
|
#import "modules/ffi/objc.sx";
|
|
|
|
#framework "UIKit";
|
|
|
|
UIApplicationMain :: (argc: i32, argv: *void, principal_class: *NSString, delegate_class: *NSString) -> i32 extern;
|
|
#import "modules/build.sx";
|
|
#import "modules/platform/bundle.sx";
|
|
|
|
configure :: () abi(.compiler) {
|
|
opts := build_options();
|
|
opts.set_bundle_path("/tmp/SxDeviceProbe.app");
|
|
opts.set_bundle_id("co.swipelab.sxprobe");
|
|
opts.set_codesign_identity("Apple Development: Alexandru Agrapine (DC8VVHJ9W4)");
|
|
opts.set_provisioning_profile("/Users/agra/Downloads/SwipeS32DevProfile.mobileprovision");
|
|
opts.set_post_link_callback(bundle_main);
|
|
}
|
|
#run configure();
|
|
|
|
// IMP for application:didFinishLaunchingWithOptions:
|
|
// Obj-C: -(BOOL)application:(UIApplication *)app didFinishLaunchingWithOptions:(NSDictionary *)opts
|
|
// Type encoding: "c@:@@" -- BOOL (signed char), self, _cmd, id, id
|
|
did_finish_launching :: (self: *void, _cmd: *void, app: *void, opts: *void) -> u8 abi(.c) {
|
|
NSLog(xx "[sx-device-probe] launched\n");
|
|
return 1; // YES
|
|
}
|
|
|
|
main :: () -> i32 {
|
|
UIResponder := objc_getClass("UIResponder".ptr);
|
|
SxAppDelegate := objc_allocateClassPair(UIResponder, "SxAppDelegate".ptr, 0);
|
|
|
|
sel := sel_registerName("application:didFinishLaunchingWithOptions:".ptr);
|
|
class_addMethod(SxAppDelegate, sel, xx did_finish_launching, "c@:@@".ptr);
|
|
|
|
objc_registerClassPair(SxAppDelegate);
|
|
|
|
// UIApplicationMain blocks driving iOS's run loop.
|
|
return UIApplicationMain(0, xx 0, xx 0, xx "SxAppDelegate");
|
|
}
|