Commit 584aeb4d by Joshua Peek

--no-tcmalloc on darwin

parent f3f230e4
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment