Commit 584aeb4d authored by Joshua Peek's avatar Joshua Peek
Browse files

--no-tcmalloc on darwin

parent f3f230e4
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -71,7 +71,12 @@ build_package_copy() {
}

build_package_ree_installer() {
  { ./installer --auto "$PREFIX_PATH"
  local options="--auto $PREFIX_PATH"
  if [[ "Darwin" = "$(uname)" ]]; then
    options="$options --no-tcmalloc"
  fi

  { ./installer $options
  } >$LOG_PATH 2>&1
}