iOS Build Environment Help Center

ARKit / Or: What frameworks?

append delete Kris Rok

Hi Pierre-Marie,

after some years I'm trying to revive the build environment for a Unity-based ARKit project, using a current SDK and the newest version of your tooling.

Now I'm facing the issue of failed linking:

```
+ [arm64] Linking UnityFramework...
Undefined symbols for architecture arm64:
"_objc_msgSend$sharedApplication", referenced from:
ARKitXRCameraProvider::TryGetFrame(UnityXRCameraParams const&, UnityXRCameraFrame*) in libUnityARKit.a(ARKitXRCameraProvider.o)
_UnityARKit_HumanBodyProvider_AcquireHumanBodyPose2DJoints in libUnityARKit.a(ARKitXRHumanBodyProvider.o)
_UnityARKit_Raycast_AcquireHitResults in libUnityARKit.a(RaycastProvider-870c0896623e1f736d4cb8b8f1980209.o)
ARKitXRInputProvider::GetOrientedDevicePose(simd_float4x4) in libUnityARKit.a(ARKitXRInputProvider.o)

[... many similar errors related to libUnityARKIT.a ...]

ld: 362 symbol(s) not found for architecture arm64
```

I've added the frameworks: `-framework ARKit -framework Metal` because of these lines inside the Info.plist:
```
<array>
<string>arm64</string>
<string>metal</string>
<string>arkit</string>
</array>
```

But this is guess work only.

Can you help me figuring out why this build fails and more importantly help me to help myself the next time: How do I know what frameworks and other possible flags my project needs?

Cheers

Reply RSS

Replies

append delete #1. Pierre-Marie Baty

Hello

"current SDK" doesn't mean anything. If Apple decided that the macOS version from where you migrated it was unsuitable to get the latest Xcode update, it won't get it and nothing will tell it to you. As a consequence you may end up using an outdated iOS SDK while thinking it's the latest.

"latest version of your tooling" doesn't mean anything for the future readers of this thread that will read it in 1 year or 2. I need (and the future readers need) the exact information.

Please comply with what is asked before posting in this forum ! More than 50% of the new threads miss the crucial contextual info I request, in spite of the big warning on the forum front page and the confirmation dialog box that asks every poster if he did provide the necessary info. There's really something for me to understand here, but I can't figure out what. I need to understand why people don't read the paragraphs called "IMPORTANT PLEASE READ" that's in front of their eyes and manage to click through the confirmation dialog boxes without actually reading them. Can you help me understand that ?

append delete #2. Kris Rok

You're right of course in regard to the information you need here. I can understand your frustration with us users but please try to be nice anyway.

> Can you help me understand that ?

Sorry, I was in a hurry. To be honest, I did not even see the "IMPORTANT PLEASE READ" part or link before starting to type the message. I saw the warning when I clicked the submit button But then I was already heading for the door. My bad!

I just had a look and the "IMPORTART" part is right on top. But it _is_ easy to skip while skimming the page, just looking for the info you seek.
You could maybe consider to set a template text into the message input textfield like e.g. in github issues. This way it's much harder to overlook/ignore.

Back to topic!

I was using iOS builder 3.53 with iOS SDK 15.5. I will try to update everything and report back.

If you don't mind could you help me with the second question in the meantime? How do I know which frameworks i need to link against? Isn't this info embedded into what Unity spits out? Or does Xcode automatically add references to the frameworks as it sees fit?

append delete #3. Pierre-Marie Baty

When you're not using CocoaPods, unless you read the technical documentation of the third-party plugins your project uses, you can't know this in advance.

The usual procedure for a given project is to try and build it without extra frameworks added first, then notice the linking errors, and proceed systematically : take the first one, copy/paste it in Google Search, click the few first links and figure out what framework this symbol (function or variable) belongs to. Then, if it's a stock iOS framework from Apple, add it from the Frameworks folder of the iOS SDK, and if it's a third-party one, download its precompiled form from its vendor GitHub page and add it likewise. Repeat until no more errors.

Resolving one single missing symbol is likely to make dozens of errors disappear at once, so even if you get like 200 missing symbols the first time, you usually don't need more than a few iterations to clear them all.

The readme file that comes with the builder already explains that.

P.S. Excellent suggestion, the template text in the message input textfield ! Thank you.

Reply

(Leave this as-is, it’s a trap!)

There is no need to “register”, just enter the same name + password of your choice every time.

Pro tip: Use markup to add links, quotes and more.

Moderators: Pierre-Marie Baty