-
-
Notifications
You must be signed in to change notification settings - Fork 331
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Minor change to project paths now SwiftTrace is a SPM package. (#229)
* Minor change to project paths now SwiftTrace is a SPM package. Tracing protocols. * Include benchmarking api. * A couple of Xprobe updates/fixes for Swift 5 * Background connection with Remote and minor SwiftTrace fix * Release candidate 5
- Loading branch information
1 parent
0ce22a2
commit 1ed89ce
Showing
5 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule SwiftTrace
updated
21 files
+18 −0 | Package.swift | |
+21 −5 | README.md | |
+2 −2 | SwiftTrace.podspec | |
+23 −6 | SwiftTrace/SwiftArgs.swift | |
+3 −1 | SwiftTrace/SwiftAspects.swift | |
+5 −1 | SwiftTrace/SwiftInvoke.swift | |
+3 −1 | SwiftTrace/SwiftMeta.swift | |
+2 −0 | SwiftTrace/SwiftStack.swift | |
+4 −1 | SwiftTrace/SwiftSwizzle.swift | |
+0 −165 | SwiftTrace/SwiftTrace.h | |
+1 −0 | SwiftTrace/SwiftTrace.h | |
+119 −14 | SwiftTrace/SwiftTrace.swift | |
+3 −11 | SwiftTraceApp.xcodeproj/project.pbxproj | |
+4 −3 | SwiftTraceApp/AppDelegate.swift | |
+3 −0 | SwiftTraceApp/DetailViewController.swift | |
+91 −43 | SwiftTraceGuts/SwiftTrace.mm | |
+184 −0 | SwiftTraceGuts/include/SwiftTrace.h | |
+2 −1 | SwiftTraceGuts/xt_forwarding_trampoline_arm64.s | |
+1 −1 | SwiftTraceGuts/xt_forwarding_trampoline_arm7.s | |
+2 −1 | SwiftTraceGuts/xt_forwarding_trampoline_x64.s | |
+1 −1 | SwiftTraceGuts/xt_forwarding_trampoline_x86.s | |
+55 −6 | SwiftTraceOSX/AppDelegate.swift |
Submodule XprobePlugin
updated
3 files
+7 −3 | Classes/Xprobe.mm | |
+2 −3 | Classes/XprobePluginMenuController.m | |
+1 −1 | XprobeSwift/XprobeSwift/SwiftSwizzler.swift |