Skip to content

Instantly share code, notes, and snippets.

View dynamicdispatch's full-sized avatar

dynamicdispatch

View GitHub Profile
@dynamicdispatch
dynamicdispatch / staticlibobjcabichecker.rb
Last active September 20, 2019 12:17
Simple ruby script to check that Objective-C static libraries are built with the latest ObjC ABI
#!/usr/bin/env ruby
require 'optparse'
require 'pathname'
require 'open3'
# This tool checks an input path for all static libraries *.a files
# and makes sure they were built with the most modern ObjC ABI version.
# Parse command line options.
#!/usr/bin/env ruby
require 'optparse'
require 'pathname'
require 'open3'
# This tool checks an input path for all static libraries *.a files
# and makes sure they were built with the most modern ObjC ABI version.
# Parse command line options.