forked from CNevd/Difacto_DMLC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.mk
44 lines (34 loc) · 1.15 KB
/
config.mk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#-----------------------------------------------------
# dmlc-core: the configuration compile script
#
# This is the default configuration setup for
# If you want to change configuration, do the following steps:
#
# - copy this file to the root of dmlc-core folder
# - modify the configuration you want
# - type make or make -j n on each of the folder
#----------------------------------------------------
# choice of compiler
export CC = gcc
export CXX = g++
export MPICXX = mpicxx
# whether to compile with -fPIC option
# Note: to build shared library(so files), fPIC is required
WITH_FPIC = 1
# whether use HDFS support during compile
USE_HDFS = 1
# whether use View FS support during compile
USE_VIEWFS = 1
# whether use AWS S3 support during compile
USE_S3 = 0
# whether use Azure blob support during compile
USE_AZURE = 0
# path to libjvm.so
LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server
# whether building unittest (gtest is required)
BUILD_TEST=0
# path to gtest library (only used when $BUILD_TEST=1)
# there should be an include path in $GTEST_PATH/include and library in $GTEST_PATH/lib
GTEST_PATH=
# path to third-party dependences such as glog
DEPS_PATH=