ECEnabler
ECEnabler copied to clipboard
Can't compile
macOS 12.4 Xcode 13.2.1 Lilu debug with Ventura support. MacKernelSDK
Im getting 3 errors:
- Architecture not supported
- Symantec Issue: (Unknown type name)
- Error: too many errors emitted, stopping now
Is Lilu and MacKernelSDK at the root of the project? Should be able to build it using xcodebuild -jobs 1 -configuration Debug
or xcodebuild -jobs 1 -configuration Release
in terminal without any other configuration. This is what the CI does, though I think CI runs on Big Sur still.
Edit: I just cloned a fresh copy of ECEnabler and it worked fine. The process I followed:
- Clone Project (
git clone [email protected]:1Revenger1/ECEnabler.git
) -
cd ECEnabler
-
git clone --depth 1 https://github.com/acidanthera/MacKernelSDK.git
- Downloaded Debug Lilu from Dortania builds
- Dropped Lilu into the ECEnabler directory. Make sure it's named
Lilu.kext
and notLilu-x.kext
. - Ran
xcodebuild -jobs 1 -configuration Debug
. Building in Xcode also worked.
Compiling in Xcode selecting Product > Build For > Profiling gave the te errors that have mentioned. But if i compile in Xcode selecting Product > Build gave me 828 warning but compiled successfully. compiling using terminal using xcodebuild -jobs 1 -configuration Release also gave me the same warning, but compiled successfully.
Are these warnings can be ignored?
Ah, never tried Build For > Profiling
. I'll double check it later. The warnings can be ignored.