Turns out this issue appears to be triggered by public classes in my module that are not declared as final.
so the following triggers the JIT session error: Symbols not found: [ error for swift on M1 macs (arm64) but not intel (x86_64)
public class Lambda { ..}
changing this to
final public class Lambda{..}
fixes this at least for now.
Topic:
Programming Languages
SubTopic:
Swift
Tags: