module LinkAgainstFinder

Constants

VERSION

Public Class Methods

setDevelopDir(path, raw = false) click to toggle source

set the develop dir for objdump, you can use this to chose version /Applications/Xcode11.app/Contents/Developer

# File lib/LinkAgainstFinder.rb, line 8
def self.setDevelopDir(path, raw = false)
  if !raw
    path = "DEVELOPER_DIR=#{path}"
  end
  $LinkAgainstFinder_develop_dir_env = path
end