Go to file
Matt Massicotte 4e16a00938
remove twitter ref, add badges
2023-05-02 06:17:11 -05:00
Sources/CoreSymbolication Add CSGetDebugLoggingLevel along with a semi-real test for it 2021-11-20 10:28:38 -05:00
Tests/CoreSymbolicationTests Add CSGetDebugLoggingLevel along with a semi-real test for it 2021-11-20 10:28:38 -05:00
.gitignore Initial commit 2021-06-09 20:25:09 -04:00
CODE_OF_CONDUCT.md Updating readme and CoC 2021-11-19 20:43:25 -05:00
LICENSE Initial commit 2021-06-09 20:16:48 -04:00
Package.swift Add CSGetDebugLoggingLevel along with a semi-real test for it 2021-11-20 10:28:38 -05:00
README.md remove twitter ref, add badges 2023-05-02 06:17:11 -05:00
nm_output_11_3.text nm for 11.3 2021-11-20 09:46:27 -05:00
nm_output_12_0.txt Adding the output of nm for the CoreSymbolication binary under 12.0 2021-11-20 09:06:25 -05:00

README.md

License Platforms

CoreSymbolication

Headers and package for the CoreSymbolication private framework for macOS.

The header is definitely not complete. But, if there's something you need/want, open up an issue and we can look into it together.

One quick note. SPM seems to be unable to make use of a modulemap link directive. This means that you need to add some special linker flags to any executable target that uses this as a dependency.

linkerSettings: [
  .unsafeFlags([
  "-Xlinker", "-F",
  "-Xlinker", "/System/Library/PrivateFrameworks",
   "-Xlinker", "-framework",
   "-Xlinker", "CoreSymbolication",
]),

Integration

Swift Package Manager

dependencies: [
    .package(url: "https://github.com/ChimeHQ/CoreSymbolication")
]

Suggestions or Feedback

We'd love to hear from you! Get in touch via an issue or pull request.

Please note that this project is released with a Contributor Code of Conduct. By participating in this project you agree to abide by its terms.