-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update compiling_for_ios.rst #8778
Conversation
You didn't follow the instructions, you need to rebase not remove the changes manually 🙂 |
Based on previous statements the bin folder contains the new libraries
201ac79
to
b5f4c04
Compare
Cleaned up your branch for you 🙂 in the future make sure you follow the instructions |
$ cp libgodot.ios.template_debug.arm64.a ios_xcode/libgodot.ios.debug.xcframework/ios-arm64/libgodot.a | ||
$ lipo -create libgodot.ios.template_debug.arm64.simulator.a libgodot.ios.template_debug.x86_64.simulator.a -output ios_xcode/libgodot.ios.debug.xcframework/ios-arm64_x86_64-simulator/libgodot.a | ||
$ cp bin/libgodot.ios.template_debug.arm64.a ios_xcode/libgodot.ios.debug.xcframework/ios-arm64/libgodot.a | ||
$ lipo -create bin/libgodot.ios.template_debug.arm64.simulator.a bin/libgodot.ios.template_debug.x86_64.simulator.a -output ios_xcode/libgodot.ios.debug.xcframework/ios-arm64_x86_64-simulator/libgodot.a | ||
|
||
$ cp libgodot.ios.template_release.arm64.a ios_xcode/libgodot.ios.release.xcframework/ios-arm64/libgodot.a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
$ cp libgodot.ios.template_release.arm64.a ios_xcode/libgodot.ios.release.xcframework/ios-arm64/libgodot.a | |
$ cp bin/libgodot.ios.template_release.arm64.a ios_xcode/libgodot.ios.release.xcframework/ios-arm64/libgodot.a |
You forgot a bin
here I'd say
Sorry I missed your previous message |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would change
$ cp -r misc/dist/ios_xcode .
to
$ cd bin
$ cp -r ../misc/dist/ios_xcode .
instead, since it's not a good idea to do it in the root folder (it will interfere with git actions later), bin
is untracked.
Closing this PR since with #10096 merged this change is no longer needed. Thank you for taking the time to make this PR though and please consider contributing in the future if you find something you want to update. |
Based on previous statements the bin folder contains the new libraries