Top Level Namespace

Defined Under Namespace

Modules: ClickhouseNative

Constant Summary collapse

EXT_DIR =
__dir__
VENDOR =
File.expand_path("vendor/clickhouse-cpp", EXT_DIR)
BUILD_DIR =
File.expand_path("build", EXT_DIR)

Instance Method Summary collapse

Instance Method Details

#fatal(msg) ⇒ Object



10
11
12
13
14
15
16
17
# File 'ext/clickhouse_native/extconf.rb', line 10

def fatal(msg)
  warn
  warn "=== clickhouse-native build failed ==="
  warn msg.chomp
  warn "===================================="
  warn
  abort "clickhouse-native: cannot build extension"
end