-
Notifications
You must be signed in to change notification settings - Fork 712
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update KSObjCApple.h with latest Obj-C sources * Update minimal deployment target to match `dyld_fall_2018_os_versions` https://github.com/apple-oss-distributions/dyld/blob/25174f1accc4d352d9e7e6294835f9e6e9b3c7bf/include/mach-o/dyld_priv.h#L246 https://github.com/apple-oss-distributions/objc4/blob/01edf1705fbc3ff78a423cd21e03dfc21eb4d780/runtime/objc-runtime-new.mm#L9340-L9356 * Use new functions * Move all content of objc-internal.h * fix NSNumber tagged pointer extraction * Try to fix tagged NSDate Like what? Who does it work? * Add unit-tests run on the oldest OSs * Enable KSObjC_Tests tests * Revert "Add unit-tests run on the oldest OSs" This reverts commit ae6a5c5. * Disable failing array tests * Eventually disable KSDebug_Tests * Update deployment target in podspec * Fix tagged pointer compilation for i386 * Make `extractTaggedNSDate` nice And add links to LLVM * Return `__unused` back * Fix i386 validation
- Loading branch information
Showing
6 changed files
with
483 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
Pod::Spec.new do |s| | ||
IOS_DEPLOYMENT_TARGET = '11.0' unless defined? IOS_DEPLOYMENT_TARGET | ||
IOS_DEPLOYMENT_TARGET = '12.0' unless defined? IOS_DEPLOYMENT_TARGET | ||
s.name = "KSCrash" | ||
s.version = "1.17.1" | ||
s.summary = "The Ultimate iOS Crash Reporter" | ||
s.homepage = "https://github.com/kstenerud/KSCrash" | ||
s.license = { :type => 'KSCrash license agreement', :file => 'LICENSE' } | ||
s.author = { "Karl Stenerud" => "[email protected]" } | ||
s.ios.deployment_target = IOS_DEPLOYMENT_TARGET | ||
s.osx.deployment_target = '10.13' | ||
s.tvos.deployment_target = '11.0' | ||
s.watchos.deployment_target = '4.0' | ||
s.osx.deployment_target = '10.14' | ||
s.tvos.deployment_target = '12.0' | ||
s.watchos.deployment_target = '5.0' | ||
s.visionos.deployment_target = '1.0' | ||
s.source = { :git => "https://github.com/kstenerud/KSCrash.git", :tag=>s.version.to_s } | ||
s.frameworks = 'Foundation' | ||
|
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
Oops, something went wrong.