22 lines
609 B
Makefile
22 lines
609 B
Makefile
#-----------------------------------------------------
|
|
# rabit-learn: the configuration compile script
|
|
#
|
|
# This is the default configuration setup for rabit-learn
|
|
# If you want to change configuration, do the following steps:
|
|
#
|
|
# - copy this file to the root of rabit-learn folder
|
|
# - modify the configuration you want
|
|
# - type make or make -j n for parallel build
|
|
#----------------------------------------------------
|
|
|
|
# choice of compiler
|
|
export CC = gcc
|
|
export CXX = g++
|
|
export MPICXX = mpicxx
|
|
|
|
# whether use HDFS support during compile
|
|
USE_HDFS = 1
|
|
|
|
# home of hadoop
|
|
HDFS_HOME = $(HADOOP_HDFS_HOME)
|