This file contains hidden or 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
#!/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. |
This file contains hidden or 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
#!/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. |