https://github.com/tqchen/xgboost
Raw File
Tip revision: df566b6bb95b5199807e46308a31e00f5eed4592 authored by tqchen on 04 July 2018, 19:23:54 UTC
[DOCS] Update link to readme
Tip revision: df566b6
build.sh
#!/bin/bash
# This is a simple script to make xgboost in MAC and Linux
# Basically, it first try to make with OpenMP, if fails, disable OpenMP and make it again.
# This will automatically make xgboost for MAC users who don't have OpenMP support.
# In most cases, type make will give what you want.

# See additional instruction in doc/build.md
set -e

if make; then
    echo "Successfully build multi-thread xgboost"
else

    not_ready=0

    if [[ ! -e ./rabit/Makefile ]]; then
        echo ""
        echo "Please init the rabit submodule:"
        echo "git submodule update --init --recursive -- rabit"
        not_ready=1
    fi
    
    if [[ ! -e ./dmlc-core/Makefile ]]; then
        echo ""
        echo "Please init the dmlc-core submodule:"
        echo "git submodule update --init --recursive -- dmlc-core"
        not_ready=1
    fi

    if [[ "${not_ready}" == "1" ]]; then
        echo ""
        echo "Please fix the errors above and retry the build, or reclone the repository with:"
        echo "git clone --recursive https://github.com/dmlc/xgboost.git"
        echo ""
        exit 1
    fi


    echo "-----------------------------"
    echo "Building multi-thread xgboost failed"
    echo "Start to build single-thread xgboost"
    make clean_all
    make config=make/minimum.mk
    if [ $? -eq 0 ] ;then
      echo "Successfully build single-thread xgboost"
      echo "If you want multi-threaded version"
      echo "See additional instructions in doc/build.md"
    else
      echo "Failed to build single-thread xgboost"
    fi
fi
back to top