Issue with xCode Version 13.3.1 (13E500a)

Since the last update of xCode in my macbook m1 2021 and my mac mini m1 2021 i am facing with am build issue using the xcode command line tools:

Xcode build done. 55,3s 168Failed to build iOS app 169Error output from Xcode build: 170↳ 171 objc[22207]: Class AppleTypeCRetimerRestoreInfoHelper is implemented in both /usr/lib/libauthinstall.dylib (0x1fb051eb0) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1080984f8). One of the two will be used. Which one is undefined. 172 objc[22207]: Class AppleTypeCRetimerFirmwareAggregateRequestCreator is implemented in both /usr/lib/libauthinstall.dylib (0x1fb051f00) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x108098548). One of the two will be used. Which one is undefined. 173 objc[22207]: Class AppleTypeCRetimerFirmwareRequestCreator is implemented in both /usr/lib/libauthinstall.dylib (0x1fb051f50) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x108098598). One of the two will be used. Which one is undefined. 174 objc[22207]: Class ATCRTRestoreInfoFTABFile is implemented in both /usr/lib/libauthinstall.dylib (0x1fb051fa0) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x1080985e8). One of the two will be used. Which one is undefined. 175 objc[22207]: Class AppleTypeCRetimerFirmwareCopier is implemented in both /usr/lib/libauthinstall.dylib (0x1fb051ff0) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x108098638). One of the two will be used. Which one is undefined. 176 objc[22207]: Class ATCRTRestoreInfoFTABSubfile is implemented in both /usr/lib/libauthinstall.dylib (0x1fb052040) and /Library/Apple/System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevice (0x108098688). One of the two will be used. Which one is undefined. 177 2022-04-14 22:34:54.390 xcodebuild[22207:90732] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 178 2022-04-14 22:34:54.390 xcodebuild[22207:90732] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionPointIdentifierToBundleIdentifier for extension Xcode.DebuggerFoundation.AppExtensionToBundleIdentifierMap.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 179 ** BUILD FAILED **

I saw a lot of workarround but they are not working in my case.

Any suggestion or update about the fix of this issue ?

Do you have the same problem when building from the Xcode app?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Hi any update here ? i am still having the issue i reinstalled the xcode and the command line tools. Please bring me a comment or help to unblock this.

So, to be clear, you have a project that:

  • Builds correctly in Xcode

  • Fails to build using xcodebuild from the command line

Is that right?

Have you check that xcodebuild is pointing to the Xcode that works? To confirm this, run this command:

% xcode-select -p
/Applications/Xcode.app/Contents/Developer

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

xcode-select -p /Applications/Xcode.app/Contents/Developer /Applications/Xcode.app/Contents/Developer zsh: permission denied: /Applications/Xcode.app/Contents/Developer 

Here the permission

A little extra comment, i installed the mac mini from scratch and i still having the same issue. Please this issue is blocking all my mac mini's pipelines since a week. Please give me a solution.

I’m sorry but you’ve misunderstand what I was asking you to do. In my previous post, the command to run is xcode-select -p. I included the second line as an example of the output I’m seeing on my machine, not as part of the command to run.

So, if you run just xcode-select -p, what do you see.

Also, the following snippet from my previous post was a question and I’d like an answer:

So, to be clear, you have a project that:

  • Builds correctly in Xcode

  • Fails to build using xcodebuild from the command line

Is that right?

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Mac-Min-2-Torrado-Desarrollosi:~ cristiantorrado$ xcode-select -p /Applications/Xcode.app/Contents/Developer

And presumably that’s the same Xcode app you’re using for GUI builds?

OK, two new tests:

  • Create a new test project, build it with Xcode app to make sure it works there, then see if you can build that with xcodebuild.

  • Create a new user account on your Mac and see if xcodebuild of your existing project works there.

Share and Enjoy

Quinn “The Eskimo!” @ Developer Technical Support @ Apple
let myEmail = "eskimo" + "1" + "@" + "apple.com"

Hello peoples!

I have a problem similar to @cristiantorrado

Here some details of my problem: I try to build a project using CapacitorJS. My versions:

    "@capacitor/android": "^3.4.3",
    "@capacitor/core": "^3.4.3",
    "@capacitor/ios": "^3.5.1",
    "@capacitor/app": "^1.1.1",
    "@capacitor/cli": "^3.5.1",

My xcode version is: 13.1 (13A1030d) Im using macOS 12.3.1. The command xcode-select -p returns:

/Applications/Xcode.app/Contents/Developer

So im trying to build the files to iOS using CapacitorJS plugin and i have the similar error. I'm still looking for a solution to the problem. I would be immensely grateful if someone would share a solution.

Oh... I already installed xcode command line tools. I installed from run: xcode-select --install.

Anyway, if i found a solution i share with community at this thread.

Oh, one more thing: I try to create a project at the Xcode app and build. Its worked normally.

I found the solution for my case. The log that the author and I had in common doesn't necessarily tell the source of the problem (not in my case). My problem was just below the Xcode logs. The error presented was about the architecture used (x86-64) which did not match my machine.

Here are the steps I performed:

  1. I reinstalled ffi (sudo arch -arm64e gem install ffi ) because it was the architecture of my machine.
  2. I reinstalled ruby, cocoapods using homebrew.
  3. Added ruby to $PATH (export PATH="/opt/homebrew/opt/ruby/bin:$PATH").

I know this problem can be very generic, but I hope it can guide some people who are starting to program using macOS like me. =)

Bye!


Linneu Lopes let myEmail = "linneu" + ".dm" + "@" + "hotmail.com"

Any updates?

Issue with xCode Version 13.3.1 (13E500a)
 
 
Q