Skip to content

Commit

Permalink
Merge pull request #9 from narcyzzo/main
Browse files Browse the repository at this point in the history
Added support for macOS Sequoia
  • Loading branch information
notjosh authored Jun 19, 2024
2 parents 4ccfcab + fcf77d1 commit 5db2384
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
16 changes: 8 additions & 8 deletions AdvancedMap.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 14.0;
MACOSX_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
MTL_FAST_MATH = YES;
ONLY_ACTIVE_ARCH = YES;
Expand Down Expand Up @@ -350,7 +350,7 @@
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
GCC_WARN_UNUSED_FUNCTION = YES;
GCC_WARN_UNUSED_VARIABLE = YES;
MACOSX_DEPLOYMENT_TARGET = 14.0;
MACOSX_DEPLOYMENT_TARGET = 15.0;
MTL_ENABLE_DEBUG_INFO = NO;
MTL_FAST_MATH = YES;
SDKROOT = macosx;
Expand All @@ -363,7 +363,7 @@
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 3.0.0;
CURRENT_PROJECT_VERSION = 4.0.0;
DEAD_CODE_STRIPPING = YES;
DEPLOYMENT_POSTPROCESSING = YES;
GCC_ENABLE_KERNEL_DEVELOPMENT = NO;
Expand All @@ -382,11 +382,11 @@
"$(inherited)",
"$(PROJECT_DIR)/MacKernelSDK/Library/x86_64",
);
MARKETING_VERSION = 3.0.0;
MARKETING_VERSION = 4.0.0;
MODULE_NAME = com.notjosh.AdvancedMap;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 3.0.0;
MODULE_VERSION = 4.0.0;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down Expand Up @@ -417,7 +417,7 @@
CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER = NO;
CODE_SIGN_STYLE = Automatic;
COPY_PHASE_STRIP = NO;
CURRENT_PROJECT_VERSION = 3.0.0;
CURRENT_PROJECT_VERSION = 4.0.0;
DEAD_CODE_STRIPPING = YES;
DEPLOYMENT_POSTPROCESSING = YES;
GCC_ENABLE_KERNEL_DEVELOPMENT = NO;
Expand All @@ -435,11 +435,11 @@
"$(PROJECT_DIR)/MacKernelSDK/Library/x86_64",
);
LLVM_LTO = YES;
MARKETING_VERSION = 3.0.0;
MARKETING_VERSION = 4.0.0;
MODULE_NAME = com.notjosh.AdvancedMap;
MODULE_START = "$(PRODUCT_NAME)_kern_start";
MODULE_STOP = "$(PRODUCT_NAME)_kern_stop";
MODULE_VERSION = 3.0.0;
MODULE_VERSION = 4.0.0;
OTHER_CFLAGS = (
"-mmmx",
"-msse",
Expand Down
4 changes: 2 additions & 2 deletions AdvancedMap/kern_start.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ PluginConfiguration ADDPR(config) {
arrsize(bootargDebug),
bootargBeta,
arrsize(bootargBeta),
KernelVersion::Sonoma,
KernelVersion::Sonoma,
KernelVersion::Sequoia,
KernelVersion::Sequoia,
[]() {
advancedMap.init();
}
Expand Down
7 changes: 2 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,12 @@ It _seems_ like it requires a dGPU (see below for support). Please let me know i
- AMD RX 5500XT
- AMD RX 5700XT
- AMD RX 6600XT

## Confirmed Unsupported GPUs

- UHD630
- AMD RX 6700XT

### Configuration

- Add `-advmapoff` to disable AdvancedMap
- Add `-advmapbeta` to enable AdvancedMap on unsupported OS versions (14.x is supported by
- Add `-advmapbeta` to enable AdvancedMap on unsupported OS versions (15.x is supported by
default)

### Downloads
Expand Down

0 comments on commit 5db2384

Please sign in to comment.