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
Utility for transforming a given library or framework into an XCFramework, generating the arm64 simulator slices if missing.
3
+
XCFrameworkNow is a command-line tool that transforms a given library or framework into an XCFramework, generating the arm64 simulator slices if missing.
4
+
This allows to build and run Xcode projects natively on Apple Silicon computers even if the developer of the library did not release a compatible version yet. No more Rosetta needed!
5
+
6
+
It supports static and dynamic libraries as input and can generate the arm64 slices for iOS, tvOS and watchOS simulators.
7
+
8
+
This tool is based on the project [arm64-to-sim](https://github.com/bogo/arm64-to-sim).
9
+
10
+
11
+
## Installation
12
+
13
+
### Homebrew
14
+
The easiest way to install XCFrameworkNow is by using [Homebrew](https://brew.sh):
15
+
```sh
16
+
brew tap gui17aume/core
17
+
brew install xcframework-now
18
+
```
19
+
20
+
### Manual install
21
+
XCFrameworkNow can be compiled and installed manually by retrieving the source code and using the following commands:
0 commit comments