Hi everyone, I’m trying to compile the Pythonista Template with Theos using a Makefile. When I’m making the package I always get this error:
Undefined symbols for architecture arm64:
"_OBJC_CLASS_$_OMTextColorTheme", referenced from:
objc-class-ref in PAAppViewController.m.417963fe.o
"_OBJC_CLASS_$_PAEExtensionContext", referenced from:
objc-class-ref in PAAppDelegate.m.417963fe.o
"_OBJC_CLASS_$_PAStandaloneOutputView", referenced from:
objc-class-ref in PAAppViewController.m.417963fe.o
"_OBJC_CLASS_$_PythonInterpreter", referenced from:
objc-class-ref in PAAppDelegate.m.417963fe.o
ld: symbol(s) not found for architecture arm64
clang-5.0: error: linker command failed with exit code 1 (use -v to see invocation)
I don’t know almost nothing of obj-c but i can assume there’s an error when importing this objects from the .h file (though the header has the #import somename.h) since all that objects are defined in their respective somename.h
Si how can I import the object or fix that undefined symbol? Or it is something about the arm64 and armv7 (I don’t think so)?