Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ You can test for this condition by adding the following code to the start of you
else if (System.Runtime.InteropServices.RuntimeInformation.IsOSPlatform(System.Runtime.InteropServices.OSPlatform.OSX))
{
nativeLibraryPrefix = "lib";
nativeLibraryExtension = ".so";
nativeLibraryExtension = ".dylib";
}
else
{
Expand Down Expand Up @@ -101,4 +101,4 @@ Step 5: Start debugging. You should hopefully see debugging still fail with the
### Error cause 3: Mismatched processor architecture (macOS only)

On ARM64 macOS, this error can be caused if the processor architecture of the debugger is different from the processor architecture of the target process. See [Debugging x64 processes on an arm64 computer
](Debugging-x64-processes-on-an-arm64-computer) for more information.
](Debugging-x64-processes-on-an-arm64-computer) for more information.