Skip to content

[bug] Missing watchOS arm64 architecture #213

@djavan-bertrand

Description

@djavan-bertrand

Describe the bug
When building for watchOS (WATCHOS or WATCHOSCOMBINED) and using the lib in Xcode, the Xcode build fails because architecture arm64 is not found.

To Reproduce
Steps to reproduce the behavior:

  1. Build using WATCHOS platform flag
  2. Embed the dylib in a xcframework
  3. Use this xcframework in a Apple Watch target in Xcode.

=> Xcode fails with undefined symbols and a warning:

ignoring file 'PATH/MY_LIB.dylib': fat file missing arch 'arm64', file has 'armv7k,arm64_32'

Expected behavior
The Xcode build should succeed

Solution found
Even though I am not sure it is the correct way to do so, here is how I fixed this bug:
I replaced line 450 of the ios.toolchain.cmake script with:

set(ARCHS arm64 armv7k arm64_32)

(instead of set(ARCHS armv7k arm64_32))
If it is the correct way, do not hesitate to tell me, I can submit a PR for you.

Environment

  • CMAKE: 3.29.2

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions