Switching over to HikariCore
Before switching over to https://github.com/HikariRebooted/HikariCore and pushing it as a part of the HikariObfuscator organisation, this repository should perhaps be renamed.
What do you mean though? Imma a bit confused. Current master of this repo already contains extra fixed unless you've manually ported them to Rebooted
Since technically this is still de facto Core with latest bug fixes and patches, IMO we should probably still treat it as one. Your fork could be integrated as a new sub-repo and use git submodule to reference stuffs in the real Core
For now the roadmap would be, IMHO:
- Update
Reboot/Corewith submodules referencing master - Update master 's CMake with options deciding if we should use our shipped legacy LLVM passes or built-in ones.
- Transfer Reboot to this organization.
These should do for LLVM9 while we are at it, the next step would be getting rid of the legacy pass, which involves fixing a bit known bugs here and there in the master
Hello, I manually ported over the fixes yesterday.
Reboot/HikariCore is not exactly the same source tree either because of compatibility concerns with newer LLVM.
@woachk Unless I'm misunderstanding here, probably 99% of the stuff in src/Passes is still the same as master. So what I mean here is change that directory to submodule and in Core's CMakeLists.txt, add something like:
option(BUILD_GENERIC_LOADER "Build Generic AppleClang Loader" OFF)
IF(BUILD_GENERIC_LOADER)
add_compile_definitions(-DHIKARI_GENERIC_LOADER)
ENDIF()
and then update the master core into something like:
#ifdef HIKARI_GENERIC_LOADER
dosth()
#else
dosthelse()
#endif
This in theory allows us to spend the minimum effort on manually porting fixes while keep everything tidy, IMHO
Although I'm open to suggestions with a more detailed guide on what needs to be done on my side