From 6aaee4acff283b9a7428eb461bc40dfb454acd51 Mon Sep 17 00:00:00 2001 From: Chen Qin Date: Sun, 25 Aug 2019 00:23:49 -0700 Subject: [PATCH] remove unused file --- make/config_mock.mk | 83 --------------------------------------------- tests/cli/build.sh | 9 ----- 2 files changed, 92 deletions(-) delete mode 100644 make/config_mock.mk delete mode 100755 tests/cli/build.sh diff --git a/make/config_mock.mk b/make/config_mock.mk deleted file mode 100644 index ccc93ea3854b..000000000000 --- a/make/config_mock.mk +++ /dev/null @@ -1,83 +0,0 @@ -#----------------------------------------------------- -# xgboost: the configuration compile script -# -# If you want to change the configuration, please use the following -# steps. Assume you are on the root directory of xgboost. -# First copy this file so that any local changes will be ignored by git -# -# $ cp make/config.mk . -# -# Next modify the according entries in the copied file and then compile by -# -# $ make -# -# or build in parallel with 8 threads -# -# $ make -j8 -#---------------------------------------------------- - -# choice of compiler, by default use system preference. -# export CC = gcc -# export CXX = g++ -# export MPICXX = mpicxx - -# the additional link flags you want to add -ADD_LDFLAGS = - -# the additional compile flags you want to add -ADD_CFLAGS = - -# Whether enable openmp support, needed for multi-threading. -USE_OPENMP = 1 - -# whether use HDFS support during compile -USE_HDFS = 0 - -# whether use AWS S3 support during compile -USE_S3 = 0 - -# whether use Azure blob support during compile -USE_AZURE = 0 - -#---------------------------- -# Settings for power and arm arch -#---------------------------- -ARCH := $(shell uname -a) -ifneq (,$(filter $(ARCH), armv6l armv7l powerpc64le ppc64le aarch64)) - USE_SSE=0 -else - USE_SSE=1 -endif - -# Rabit library version, -# - librabit.a Normal distributed version. -# - librabit_empty.a Non distributed mock version, -LIB_RABIT = librabit_mock.a - -# path to libjvm.so -LIBJVM=$(JAVA_HOME)/jre/lib/amd64/server - -# whether to test with coverage measurement or not. (only used for `make cover`) -# measured with gcov and html report generated with lcov if it is installed. -# this disables optimization to ensure coverage information is correct -TEST_COVER = 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 cub library (only used when $CUDA_ENABLED=1) -# this should point to the cub project root folder -CUB_PATH ?= cub - -# List of additional plugins, checkout plugin folder. -# uncomment the following lines to include these plugins -# you can also add your own plugin like this -# -# XGB_PLUGINS += plugin/example/plugin.mk - -# plugin to build tree on GPUs using CUDA -PLUGIN_UPDATER_GPU ?= OFF -ifeq ($(PLUGIN_UPDATER_GPU),ON) - XGB_PLUGINS += plugin/updater_gpu/plugin.mk -endif diff --git a/tests/cli/build.sh b/tests/cli/build.sh deleted file mode 100755 index e143de641fce..000000000000 --- a/tests/cli/build.sh +++ /dev/null @@ -1,9 +0,0 @@ -rm -f *.model* -cd ../../rabit -make clean;make -cd test -make clean;make -cd ../../ -cp make/config_mock.mk config.mk -make clean;make -j 8 -cd tests/cli \ No newline at end of file