You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I received the following error when trying to debug a project that made use of an ANE on macOS:
ArgumentError: Error #3500: The extension context does not have a method with the name SomeNativeMethod.
The ANE contains a native macOS framework, which makes use of symbolic links (e.g. MyNativeExtension -> Versions/Current/MyNativeExtension).
I found that asconfigc's unpackANE method does not handle the creation of symbolic links and instead writes the links out as text files, leading to the extension not being loaded.
I've created a potential fix; I will submit and link the pull request.