1Revenger1 / ECEnabler

218 stars 22 forks source link

Can't compile #21

Open ellaosx2007 opened 2 years ago

ellaosx2007 commented 2 years ago

macOS 12.4 Xcode 13.2.1 Lilu debug with Ventura support. MacKernelSDK

Im getting 3 errors:

  1. Architecture not supported
  2. Symantec Issue: (Unknown type name)
  3. Error: too many errors emitted, stopping now
1Revenger1 commented 2 years ago

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:

  1. Clone Project (git clone git@github.com:1Revenger1/ECEnabler.git)
  2. cd ECEnabler
  3. git clone --depth 1 https://github.com/acidanthera/MacKernelSDK.git
  4. Downloaded Debug Lilu from Dortania builds
  5. Dropped Lilu into the ECEnabler directory. Make sure it's named Lilu.kext and not Lilu-x.kext.
  6. Ran xcodebuild -jobs 1 -configuration Debug. Building in Xcode also worked.
onixsosx commented 2 years ago

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?

1Revenger1 commented 2 years ago

Ah, never tried Build For > Profiling. I'll double check it later. The warnings can be ignored.