From db0b06d19c4e9e8cde4c1eca069a65ed178377fe Mon Sep 17 00:00:00 2001 From: Tong He Date: Wed, 25 Mar 2015 17:14:14 -0700 Subject: [PATCH] add another solution to os x --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 6a05ce0c4..cfb561bf4 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,18 @@ Build export CXX = g++-4.9 ``` Then run ```bash build.sh``` normally. + + - For users who want to use [High Performance Computing for Mac OS X](http://hpc.sourceforge.net/), download the GCC 4.9 binary tar ball and follow the installation guidance to install them under `/usr/local`. Then edit [Makefile](Makefile/) by replacing: + ``` + export CC = gcc + export CXX = g++ + ``` + with + ``` + export CC = /usr/local/bin/gcc + export CXX = /usr/local/bin/g++ + ``` + Then run ```bash build.sh``` normally. This solution is given by [Phil Culliton](https://www.kaggle.com/c/otto-group-product-classification-challenge/forums/t/12947/achieve-0-50776-on-the-leaderboard-in-a-minute-with-xgboost/68308#post68308). Version =======