Top Level Namespace

Defined Under Namespace

Modules: GRPC Classes: Struct, TmpChannelArgs

Constant Summary collapse

LIBDIR =
RbConfig::CONFIG['libdir']
INCLUDEDIR =
RbConfig::CONFIG['includedir']
HEADER_DIRS =
[
  # Search /opt/local (Mac source install)
  '/opt/local/include',

  # Search /usr/local (Source install)
  '/usr/local/include',

  # Check the ruby install locations
  INCLUDEDIR
]
LIB_DIRS =
[
  # Search /opt/local (Mac source install)
  '/opt/local/lib',

  # Search /usr/local (Source install)
  '/usr/local/lib',

  # Check the ruby install locations
  LIBDIR
]

Instance Method Summary collapse

Instance Method Details

#crash(msg) ⇒ Object



79
80
81
82
# File 'ext/grpc/extconf.rb', line 79

def crash(msg)
  print(" extconf failure: #{msg}\n")
  exit 1
end