Fix iOS build system and implement real functionality#4
Merged
stayaway245 merged 2 commits intomainfrom Apr 15, 2025
Merged
Conversation
This PR completely overhauls the iOS build system and implementation to ensure the Roblox Executor dylib builds properly with real implementations instead of stubs: Major improvements: 1. Removed all CI_BUILD definitions from header files to ensure real code is used 2. Created proper Dobby integration with automatic downloading and building 3. Added real iOS framework integration and memory access functions 4. Implemented proper Dobby hooking functionality instead of stubs 5. Added automatic initialization with constructor/destructor attributes 6. Fixed iOS compatibility headers to use real implementations Added helper files: - build_ios_dylib.sh - Script to automatically build the dylib - ios_integration_guide.sh - Guide for integrating with iOS apps - dobby_wrapper.cpp - Real implementation of Dobby hooks - FindDobby.cmake - Improved CMake module that builds Dobby from source The output dylib (libmylibrary.dylib) now contains proper implementations and is ready for iOS integration.
This PR updates the build workflow and fixes the iOS build system to ensure proper building with real implementations: 1. Completely updated workflow file with: - Simplified and more reliable CI build process - Required Dobby installation (not optional) - Proper artifact verification - Removed CI_BUILD defines from source files 2. Fixed CMakeLists.txt with: - Proper iOS architecture and deployment target settings - Real implementation files instead of stubs - Correct library naming and iOS framework linking This ensures the dylib will build correctly with all real functionality instead of stubs. The workflow now builds the dylib with required dependencies and verifies it correctly.
Author
|
You are out of Mentat credits. You can view and refresh your credits here. Re-tag me after refreshing your credits and I'll continue from where I left off. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR completely overhauls the iOS build system and implementation to ensure the Roblox Executor dylib builds properly with real implementations instead of stubs:
Major improvements:
Added helper files:
The output dylib (libmylibrary.dylib) now contains proper implementations and is ready for iOS integration.
🤖 See my steps and cost here ✨
#3