Mac OS安装xgboost

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/caicaiatnbu/article/details/82759092
  • 安装命令 
git clone --recursive https://github.com/dmlc/xgboost
ls
cd xgboost
bash build.sh
ls
cd python-package
sudo python setup.py install
  • 过程记录 
Last login: Tue Sep 18 15:25:06 on console
MacBook-Pro-3:~ weidong$ python
Python 2.7.15 |Anaconda, Inc.| (default, May  1 2018, 18:37:05) 
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import xgboost
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named xgboost
>>> 
[2]+  Stopped                 python
MacBook-Pro-3:~ weidong$ 
MacBook-Pro-3:~ weidong$ 
MacBook-Pro-3:~ weidong$ 
MacBook-Pro-3:~ weidong$ cmd
-bash: cmd: command not found
MacBook-Pro-3:~ weidong$ pwd
/Users/weidong
MacBook-Pro-3:~ weidong$ ls
Desktop			MLCompetition		Public
Documents		Movies			PycharmProjects
Downloads		Music			lihang_book_algorithm
Library			Pictures		scikit_learn_data
MacBook-Pro-3:~ weidong$ git clone --recursive https://github.com/dmlc/xgboost
Cloning into 'xgboost'...
remote: Counting objects: 25126, done.
remote: Compressing objects: 100% (23/23), done.
remote: Total 25126 (delta 2), reused 12 (delta 1), pack-reused 25097
Receiving objects: 100% (25126/25126), 9.47 MiB | 932.00 KiB/s, done.
Resolving deltas: 100% (14665/14665), done.
Submodule 'cub' (https://github.com/NVlabs/cub) registered for path 'cub'
Submodule 'dmlc-core' (https://github.com/dmlc/dmlc-core) registered for path 'dmlc-core'
Submodule 'rabit' (https://github.com/dmlc/rabit) registered for path 'rabit'
Cloning into '/Users/weidong/xgboost/cub'...
remote: Counting objects: 32642, done.        
remote: Total 32642 (delta 0), reused 0 (delta 0), pack-reused 32642        
Receiving objects: 100% (32642/32642), 16.49 MiB | 797.00 KiB/s, done.
Resolving deltas: 100% (28621/28621), done.
Cloning into '/Users/weidong/xgboost/dmlc-core'...
remote: Counting objects: 5125, done.        
remote: Compressing objects: 100% (51/51), done.        
remote: Total 5125 (delta 49), reused 79 (delta 40), pack-reused 5033        
Receiving objects: 100% (5125/5125), 1.27 MiB | 245.00 KiB/s, done.
Resolving deltas: 100% (3076/3076), done.
Cloning into '/Users/weidong/xgboost/rabit'...
remote: Counting objects: 3174, done.        
remote: Total 3174 (delta 0), reused 0 (delta 0), pack-reused 3174        
Receiving objects: 100% (3174/3174), 905.55 KiB | 183.00 KiB/s, done.
Resolving deltas: 100% (2058/2058), done.
Submodule path 'cub': checked out 'b20808b1b04ec3d6a625e51fbc1eb76f337754ad'
Submodule path 'dmlc-core': checked out 'e3377de933d3e069635150fb330ce6cc33b57950'
Submodule path 'rabit': checked out '87143deb4c0a34302f727ba35497e3380b2cced8'
MacBook-Pro-3:~ weidong$ ls
Desktop			Movies			lihang_book_algorithm
Documents		Music			scikit_learn_data
Downloads		Pictures		xgboost
Library			Public
MLCompetition		PycharmProjects
MacBook-Pro-3:~ weidong$ cd xgboost/
MacBook-Pro-3:xgboost weidong$ ls
CITATION	Makefile	appveyor.yml	dmlc-core	plugin
CMakeLists.txt	NEWS.md		build.sh	doc		python-package
CONTRIBUTORS.md	R-package	cmake		include		rabit
Jenkinsfile	README.md	cub		jvm-packages	src
LICENSE		amalgamation	demo		make		tests
MacBook-Pro-3:xgboost weidong$ bash build.sh 
Makefile:31: MAKE [/Library/Developer/CommandLineTools/usr/bin/make] - checked OK
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -msse2 -fPIC -fopenmp -MM -MT build/learner.o src/learner.cc >build/learner.d
clang: error: unsupported option '-fopenmp'
make: *** [build/learner.o] Error 1
-----------------------------
Building multi-thread xgboost failed
Start to build single-thread xgboost
Makefile:31: MAKE [/Library/Developer/CommandLineTools/usr/bin/make] - checked OK
rm -f -rf build build_plugin lib bin *~ */*~ */*/*~ */*/*/*~ */*.o */*/*.o */*/*/*.o #xgboost
rm -f -rf build_tests *.gcov tests/cpp/xgboost_test
if [ -d "R-package/src" ]; then \
		cd R-package/src; \
		rm -f -rf rabit src include dmlc-core amalgamation *.so *.dll; \
		cd /Users/weidong/xgboost; \
	fi
cd dmlc-core; "/Library/Developer/CommandLineTools/usr/bin/make" clean; cd /Users/weidong/xgboost
rm -f line_split.o indexed_recordio_split.o recordio_split.o input_split_base.o io.o filesys.o local_filesys.o data.o recordio.o config.o  libdmlc.a test/filesys_test test/dataiter_test test/iostream_test test/recordio_test test/split_read_test test/stream_read_test test/split_test test/libsvm_parser_test test/libfm_parser_test test/split_repeat_read_test test/strtonum_test test/logging_test test/parameter_test test/registry_test test/csv_parser_test test/unittest/dmlc_unittest test/unittest/unittest_any.o test/unittest/unittest_array_view.o test/unittest/unittest_config.o test/unittest/unittest_env.o test/unittest/unittest_inputsplit.o test/unittest/unittest_json.o test/unittest/unittest_lockfree.o test/unittest/unittest_logging.o test/unittest/unittest_main.o test/unittest/unittest_optional.o test/unittest/unittest_param.o test/unittest/unittest_parser.o test/unittest/unittest_serializer.o test/unittest/unittest_thread_group.o test/unittest/unittest_threaditer.o test/unittest/unittest_threaditer_exc_handling.o *~ src/*~ src/*/*~ include/dmlc/*~ test/*~
cd rabit; "/Library/Developer/CommandLineTools/usr/bin/make" clean; cd /Users/weidong/xgboost
rm -f ./allreduce_base.o ./allreduce_robust.o ./engine.o ./engine_empty.o ./engine_mock.o ./c_api.o ./engine_base.o ./engine_mpi.o lib/librabit.a lib/librabit_mpi.a lib/librabit_empty.a lib/librabit_mock.a lib/librabit_base.a  lib/librabit.so lib/librabit_mpi.so lib/librabit_mock.so lib/librabit_base.so *~ src/*~ include/*~ include/*/*~
Makefile:31: MAKE [/Library/Developer/CommandLineTools/usr/bin/make] - checked OK
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/learner.o src/learner.cc >build/learner.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/learner.cc -o build/learner.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/logging.o src/logging.cc >build/logging.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/logging.cc -o build/logging.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/c_api/c_api.o src/c_api/c_api.cc >build/c_api/c_api.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/c_api/c_api.cc -o build/c_api/c_api.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/c_api/c_api_error.o src/c_api/c_api_error.cc >build/c_api/c_api_error.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/c_api/c_api_error.cc -o build/c_api/c_api_error.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/common/common.o src/common/common.cc >build/common/common.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/common/common.cc -o build/common/common.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/common/hist_util.o src/common/hist_util.cc >build/common/hist_util.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/common/hist_util.cc -o build/common/hist_util.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/common/host_device_vector.o src/common/host_device_vector.cc >build/common/host_device_vector.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/common/host_device_vector.cc -o build/common/host_device_vector.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/data.o src/data/data.cc >build/data/data.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/data.cc -o build/data/data.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/simple_csr_source.o src/data/simple_csr_source.cc >build/data/simple_csr_source.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/simple_csr_source.cc -o build/data/simple_csr_source.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/simple_dmatrix.o src/data/simple_dmatrix.cc >build/data/simple_dmatrix.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/simple_dmatrix.cc -o build/data/simple_dmatrix.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/sparse_page_dmatrix.o src/data/sparse_page_dmatrix.cc >build/data/sparse_page_dmatrix.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/sparse_page_dmatrix.cc -o build/data/sparse_page_dmatrix.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/sparse_page_raw_format.o src/data/sparse_page_raw_format.cc >build/data/sparse_page_raw_format.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/sparse_page_raw_format.cc -o build/data/sparse_page_raw_format.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/sparse_page_source.o src/data/sparse_page_source.cc >build/data/sparse_page_source.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/sparse_page_source.cc -o build/data/sparse_page_source.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/data/sparse_page_writer.o src/data/sparse_page_writer.cc >build/data/sparse_page_writer.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/data/sparse_page_writer.cc -o build/data/sparse_page_writer.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/gbm/gblinear.o src/gbm/gblinear.cc >build/gbm/gblinear.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/gbm/gblinear.cc -o build/gbm/gblinear.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/gbm/gbm.o src/gbm/gbm.cc >build/gbm/gbm.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/gbm/gbm.cc -o build/gbm/gbm.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/gbm/gbtree.o src/gbm/gbtree.cc >build/gbm/gbtree.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/gbm/gbtree.cc -o build/gbm/gbtree.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/linear/linear_updater.o src/linear/linear_updater.cc >build/linear/linear_updater.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/linear/linear_updater.cc -o build/linear/linear_updater.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/linear/updater_coordinate.o src/linear/updater_coordinate.cc >build/linear/updater_coordinate.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/linear/updater_coordinate.cc -o build/linear/updater_coordinate.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/linear/updater_shotgun.o src/linear/updater_shotgun.cc >build/linear/updater_shotgun.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/linear/updater_shotgun.cc -o build/linear/updater_shotgun.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/metric/elementwise_metric.o src/metric/elementwise_metric.cc >build/metric/elementwise_metric.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/metric/elementwise_metric.cc -o build/metric/elementwise_metric.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/metric/metric.o src/metric/metric.cc >build/metric/metric.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/metric/metric.cc -o build/metric/metric.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/metric/multiclass_metric.o src/metric/multiclass_metric.cc >build/metric/multiclass_metric.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/metric/multiclass_metric.cc -o build/metric/multiclass_metric.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/metric/rank_metric.o src/metric/rank_metric.cc >build/metric/rank_metric.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/metric/rank_metric.cc -o build/metric/rank_metric.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/objective/hinge.o src/objective/hinge.cc >build/objective/hinge.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/objective/hinge.cc -o build/objective/hinge.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/objective/multiclass_obj.o src/objective/multiclass_obj.cc >build/objective/multiclass_obj.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/objective/multiclass_obj.cc -o build/objective/multiclass_obj.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/objective/objective.o src/objective/objective.cc >build/objective/objective.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/objective/objective.cc -o build/objective/objective.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/objective/rank_obj.o src/objective/rank_obj.cc >build/objective/rank_obj.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/objective/rank_obj.cc -o build/objective/rank_obj.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/objective/regression_obj.o src/objective/regression_obj.cc >build/objective/regression_obj.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/objective/regression_obj.cc -o build/objective/regression_obj.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/predictor/cpu_predictor.o src/predictor/cpu_predictor.cc >build/predictor/cpu_predictor.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/predictor/cpu_predictor.cc -o build/predictor/cpu_predictor.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/predictor/predictor.o src/predictor/predictor.cc >build/predictor/predictor.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/predictor/predictor.cc -o build/predictor/predictor.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/split_evaluator.o src/tree/split_evaluator.cc >build/tree/split_evaluator.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/split_evaluator.cc -o build/tree/split_evaluator.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/tree_model.o src/tree/tree_model.cc >build/tree/tree_model.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/tree_model.cc -o build/tree/tree_model.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/tree_updater.o src/tree/tree_updater.cc >build/tree/tree_updater.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/tree_updater.cc -o build/tree/tree_updater.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_colmaker.o src/tree/updater_colmaker.cc >build/tree/updater_colmaker.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_colmaker.cc -o build/tree/updater_colmaker.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_fast_hist.o src/tree/updater_fast_hist.cc >build/tree/updater_fast_hist.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_fast_hist.cc -o build/tree/updater_fast_hist.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_histmaker.o src/tree/updater_histmaker.cc >build/tree/updater_histmaker.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_histmaker.cc -o build/tree/updater_histmaker.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_prune.o src/tree/updater_prune.cc >build/tree/updater_prune.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_prune.cc -o build/tree/updater_prune.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_refresh.o src/tree/updater_refresh.cc >build/tree/updater_refresh.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_refresh.cc -o build/tree/updater_refresh.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_skmaker.o src/tree/updater_skmaker.cc >build/tree/updater_skmaker.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_skmaker.cc -o build/tree/updater_skmaker.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/tree/updater_sync.o src/tree/updater_sync.cc >build/tree/updater_sync.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/tree/updater_sync.cc -o build/tree/updater_sync.o
cd dmlc-core; "/Library/Developer/CommandLineTools/usr/bin/make" libdmlc.a config=/Users/weidong/xgboost/make/minimum.mk; cd /Users/weidong/xgboost
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o line_split.o src/io/line_split.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o indexed_recordio_split.o src/io/indexed_recordio_split.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o recordio_split.o src/io/recordio_split.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o input_split_base.o src/io/input_split_base.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o io.o src/io.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o filesys.o src/io/filesys.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o local_filesys.o src/io/local_filesys.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o data.o src/data.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o recordio.o src/recordio.cc
c++ -c -O3 -Wall -Wno-unknown-pragmas -Iinclude  -std=c++0x -fPIC -DDMLC_USE_HDFS=0 -DDMLC_USE_S3=0 -DDMLC_USE_AZURE=0  -msse2 -o config.o src/config.cc
ar cr libdmlc.a line_split.o indexed_recordio_split.o recordio_split.o input_split_base.o io.o filesys.o local_filesys.o data.o recordio.o config.o
cd rabit; "/Library/Developer/CommandLineTools/usr/bin/make" lib/librabit_empty.a USE_SSE=; cd /Users/weidong/xgboost
c++ -c -O3 -Wall -Wextra -Wno-unused-parameter -Wno-unknown-pragmas -std=c++0x -fPIC -o engine_empty.o src/engine_empty.cc
c++ -c -O3 -Wall -Wextra -Wno-unused-parameter -Wno-unknown-pragmas -std=c++0x -fPIC -o c_api.o src/c_api.cc
ar cr lib/librabit_empty.a engine_empty.o c_api.o
ar crv lib/libxgboost.a build/learner.o build/logging.o build/c_api/c_api.o build/c_api/c_api_error.o build/common/common.o build/common/hist_util.o build/common/host_device_vector.o build/data/data.o build/data/simple_csr_source.o build/data/simple_dmatrix.o build/data/sparse_page_dmatrix.o build/data/sparse_page_raw_format.o build/data/sparse_page_source.o build/data/sparse_page_writer.o build/gbm/gblinear.o build/gbm/gbm.o build/gbm/gbtree.o build/linear/linear_updater.o build/linear/updater_coordinate.o build/linear/updater_shotgun.o build/metric/elementwise_metric.o build/metric/metric.o build/metric/multiclass_metric.o build/metric/rank_metric.o build/objective/hinge.o build/objective/multiclass_obj.o build/objective/objective.o build/objective/rank_obj.o build/objective/regression_obj.o build/predictor/cpu_predictor.o build/predictor/predictor.o build/tree/split_evaluator.o build/tree/tree_model.o build/tree/tree_updater.o build/tree/updater_colmaker.o build/tree/updater_fast_hist.o build/tree/updater_histmaker.o build/tree/updater_prune.o build/tree/updater_refresh.o build/tree/updater_skmaker.o build/tree/updater_sync.o
a - build/learner.o
a - build/logging.o
a - build/c_api/c_api.o
a - build/c_api/c_api_error.o
a - build/common/common.o
a - build/common/hist_util.o
a - build/common/host_device_vector.o
a - build/data/data.o
a - build/data/simple_csr_source.o
a - build/data/simple_dmatrix.o
a - build/data/sparse_page_dmatrix.o
a - build/data/sparse_page_raw_format.o
a - build/data/sparse_page_source.o
a - build/data/sparse_page_writer.o
a - build/gbm/gblinear.o
a - build/gbm/gbm.o
a - build/gbm/gbtree.o
a - build/linear/linear_updater.o
a - build/linear/updater_coordinate.o
a - build/linear/updater_shotgun.o
a - build/metric/elementwise_metric.o
a - build/metric/metric.o
a - build/metric/multiclass_metric.o
a - build/metric/rank_metric.o
a - build/objective/hinge.o
a - build/objective/multiclass_obj.o
a - build/objective/objective.o
a - build/objective/rank_obj.o
a - build/objective/regression_obj.o
a - build/predictor/cpu_predictor.o
a - build/predictor/predictor.o
a - build/tree/split_evaluator.o
a - build/tree/tree_model.o
a - build/tree/tree_updater.o
a - build/tree/updater_colmaker.o
a - build/tree/updater_fast_hist.o
a - build/tree/updater_histmaker.o
a - build/tree/updater_prune.o
a - build/tree/updater_refresh.o
a - build/tree/updater_skmaker.o
a - build/tree/updater_sync.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -shared -o lib/libxgboost.dylib build/learner.o build/logging.o build/c_api/c_api.o build/c_api/c_api_error.o build/common/common.o build/common/hist_util.o build/common/host_device_vector.o build/data/data.o build/data/simple_csr_source.o build/data/simple_dmatrix.o build/data/sparse_page_dmatrix.o build/data/sparse_page_raw_format.o build/data/sparse_page_source.o build/data/sparse_page_writer.o build/gbm/gblinear.o build/gbm/gbm.o build/gbm/gbtree.o build/linear/linear_updater.o build/linear/updater_coordinate.o build/linear/updater_shotgun.o build/metric/elementwise_metric.o build/metric/metric.o build/metric/multiclass_metric.o build/metric/rank_metric.o build/objective/hinge.o build/objective/multiclass_obj.o build/objective/objective.o build/objective/rank_obj.o build/objective/regression_obj.o build/predictor/cpu_predictor.o build/predictor/predictor.o build/tree/split_evaluator.o build/tree/tree_model.o build/tree/tree_updater.o build/tree/updater_colmaker.o build/tree/updater_fast_hist.o build/tree/updater_histmaker.o build/tree/updater_prune.o build/tree/updater_refresh.o build/tree/updater_skmaker.o build/tree/updater_sync.o dmlc-core/libdmlc.a rabit/lib/librabit_empty.a -pthread -lm   
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -MM -MT build/cli_main.o src/cli_main.cc >build/cli_main.d
c++ -c -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP src/cli_main.cc -o build/cli_main.o
c++ -DDMLC_LOG_CUSTOMIZE=1 -std=c++11 -Wall -Wno-unknown-pragmas -Iinclude   -Idmlc-core/include -Irabit/include -I/include -O3 -funroll-loops -fPIC -DDISABLE_OPENMP -o xgboost  build/cli_main.o build/learner.o build/logging.o build/c_api/c_api.o build/c_api/c_api_error.o build/common/common.o build/common/hist_util.o build/common/host_device_vector.o build/data/data.o build/data/simple_csr_source.o build/data/simple_dmatrix.o build/data/sparse_page_dmatrix.o build/data/sparse_page_raw_format.o build/data/sparse_page_source.o build/data/sparse_page_writer.o build/gbm/gblinear.o build/gbm/gbm.o build/gbm/gbtree.o build/linear/linear_updater.o build/linear/updater_coordinate.o build/linear/updater_shotgun.o build/metric/elementwise_metric.o build/metric/metric.o build/metric/multiclass_metric.o build/metric/rank_metric.o build/objective/hinge.o build/objective/multiclass_obj.o build/objective/objective.o build/objective/rank_obj.o build/objective/regression_obj.o build/predictor/cpu_predictor.o build/predictor/predictor.o build/tree/split_evaluator.o build/tree/tree_model.o build/tree/tree_updater.o build/tree/updater_colmaker.o build/tree/updater_fast_hist.o build/tree/updater_histmaker.o build/tree/updater_prune.o build/tree/updater_refresh.o build/tree/updater_skmaker.o build/tree/updater_sync.o dmlc-core/libdmlc.a rabit/lib/librabit_empty.a  -pthread -lm   
Successfully build single-thread xgboost
If you want multi-threaded version
See additional instructions in doc/build.md
MacBook-Pro-3:xgboost weidong$ ls
CITATION	NEWS.md		build.sh	include		rabit
CMakeLists.txt	R-package	cmake		jvm-packages	src
CONTRIBUTORS.md	README.md	cub		lib		tests
Jenkinsfile	amalgamation	demo		make		xgboost
LICENSE		appveyor.yml	dmlc-core	plugin
Makefile	build		doc		python-package
MacBook-Pro-3:xgboost weidong$ cd python-package/
MacBook-Pro-3:python-package weidong$ ls
MANIFEST.in			setup.cfg
README.rst			setup.py
build_trouble_shooting.md	setup_pip.py
prep_pip.sh			xgboost
MacBook-Pro-3:python-package weidong$ sudo python setup.py install
Password:
Install libxgboost from: ['../lib/libxgboost.dylib']
running install
running bdist_egg
running egg_info
creating xgboost.egg-info
writing requirements to xgboost.egg-info/requires.txt
writing xgboost.egg-info/PKG-INFO
writing top-level names to xgboost.egg-info/top_level.txt
writing dependency_links to xgboost.egg-info/dependency_links.txt
writing manifest file 'xgboost.egg-info/SOURCES.txt'
reading manifest file 'xgboost.egg-info/SOURCES.txt'
reading manifest template 'MANIFEST.in'
warning: no previously-included files matching '*.pyo' found anywhere in distribution
warning: no previously-included files matching '*.pyc' found anywhere in distribution
writing manifest file 'xgboost.egg-info/SOURCES.txt'
installing library code to build/bdist.macosx-10.6-x86_64/egg
running install_lib
running build_py
creating build
creating build/lib
creating build/lib/xgboost
copying xgboost/rabit.py -> build/lib/xgboost
copying xgboost/callback.py -> build/lib/xgboost
copying xgboost/compat.py -> build/lib/xgboost
copying xgboost/plotting.py -> build/lib/xgboost
copying xgboost/__init__.py -> build/lib/xgboost
copying xgboost/core.py -> build/lib/xgboost
copying xgboost/libpath.py -> build/lib/xgboost
copying xgboost/sklearn.py -> build/lib/xgboost
copying xgboost/training.py -> build/lib/xgboost
copying xgboost/VERSION -> build/lib/xgboost
copying xgboost/build-python.sh -> build/lib/xgboost
creating build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/.editorconfig -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/.git -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/.gitignore -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/.travis.yml -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/CMakeLists.txt -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/LICENSE -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/Makefile -> build/lib/xgboost/dmlc-core
copying xgboost/dmlc-core/README.md -> build/lib/xgboost/dmlc-core
creating build/lib/xgboost/dmlc-core/cmake
copying xgboost/dmlc-core/cmake/Utils.cmake -> build/lib/xgboost/dmlc-core/cmake
copying xgboost/dmlc-core/cmake/lint.cmake -> build/lib/xgboost/dmlc-core/cmake
creating build/lib/xgboost/dmlc-core/cmake/Modules
copying xgboost/dmlc-core/cmake/Modules/FindHDFS.cmake -> build/lib/xgboost/dmlc-core/cmake/Modules
creating build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/.gitignore -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/Doxyfile -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/Makefile -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/README -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/conf.py -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/index.md -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/parameter.md -> build/lib/xgboost/dmlc-core/doc
copying xgboost/dmlc-core/doc/sphinx_util.py -> build/lib/xgboost/dmlc-core/doc
creating build/lib/xgboost/dmlc-core/example
copying xgboost/dmlc-core/example/dmlc_example.mk -> build/lib/xgboost/dmlc-core/example
copying xgboost/dmlc-core/example/parameter.cc -> build/lib/xgboost/dmlc-core/example
creating build/lib/xgboost/dmlc-core/include
creating build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/any.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/array_view.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/base.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/blockingconcurrentqueue.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/common.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/concurrency.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/concurrentqueue.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/config.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/data.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/endian.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/input_split_shuffle.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/io.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/json.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/logging.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/lua.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/memory.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/memory_io.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/omp.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/optional.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/parameter.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/recordio.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/registry.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/serializer.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/thread_group.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/thread_local.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/threadediter.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/timer.h -> build/lib/xgboost/dmlc-core/include/dmlc
copying xgboost/dmlc-core/include/dmlc/type_traits.h -> build/lib/xgboost/dmlc-core/include/dmlc
creating build/lib/xgboost/dmlc-core/make
copying xgboost/dmlc-core/make/config.mk -> build/lib/xgboost/dmlc-core/make
copying xgboost/dmlc-core/make/dmlc.mk -> build/lib/xgboost/dmlc-core/make
creating build/lib/xgboost/dmlc-core/scripts
copying xgboost/dmlc-core/scripts/lint.py -> build/lib/xgboost/dmlc-core/scripts
copying xgboost/dmlc-core/scripts/packages.mk -> build/lib/xgboost/dmlc-core/scripts
copying xgboost/dmlc-core/scripts/setup_nvcc.sh -> build/lib/xgboost/dmlc-core/scripts
creating build/lib/xgboost/dmlc-core/scripts/travis
copying xgboost/dmlc-core/scripts/travis/travis_before_cache.sh -> build/lib/xgboost/dmlc-core/scripts/travis
copying xgboost/dmlc-core/scripts/travis/travis_osx_install.sh -> build/lib/xgboost/dmlc-core/scripts/travis
copying xgboost/dmlc-core/scripts/travis/travis_script.sh -> build/lib/xgboost/dmlc-core/scripts/travis
copying xgboost/dmlc-core/scripts/travis/travis_setup_env.sh -> build/lib/xgboost/dmlc-core/scripts/travis
creating build/lib/xgboost/dmlc-core/src
copying xgboost/dmlc-core/src/config.cc -> build/lib/xgboost/dmlc-core/src
copying xgboost/dmlc-core/src/data.cc -> build/lib/xgboost/dmlc-core/src
copying xgboost/dmlc-core/src/io.cc -> build/lib/xgboost/dmlc-core/src
copying xgboost/dmlc-core/src/recordio.cc -> build/lib/xgboost/dmlc-core/src
creating build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/basic_row_iter.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/csv_parser.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/disk_row_iter.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/libfm_parser.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/libsvm_parser.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/parser.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/row_block.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/strtonum.h -> build/lib/xgboost/dmlc-core/src/data
copying xgboost/dmlc-core/src/data/text_parser.h -> build/lib/xgboost/dmlc-core/src/data
creating build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/azure_filesys.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/azure_filesys.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/cached_input_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/filesys.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/filesys.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/hdfs_filesys.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/hdfs_filesys.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/indexed_recordio_split.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/indexed_recordio_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/input_split_base.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/input_split_base.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/line_split.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/line_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/local_filesys.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/local_filesys.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/recordio_split.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/recordio_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/s3_filesys.cc -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/s3_filesys.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/single_file_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/single_threaded_input_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/threaded_input_split.h -> build/lib/xgboost/dmlc-core/src/io
copying xgboost/dmlc-core/src/io/uri_spec.h -> build/lib/xgboost/dmlc-core/src/io
creating build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/.gitignore -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/README.md -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/csv_parser_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/dataiter_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/dmlc_test.mk -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/filesys_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/iostream_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/libfm_parser_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/libsvm_parser_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/logging_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/parameter_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/recordio_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/registry_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/split_read_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/split_repeat_read_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/split_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/stream_read_test.cc -> build/lib/xgboost/dmlc-core/test
copying xgboost/dmlc-core/test/strtonum_test.cc -> build/lib/xgboost/dmlc-core/test
creating build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/.gitignore -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/CMakeLists.txt -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/dmlc_unittest.mk -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_any.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_array_view.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_config.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_env.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_inputsplit.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_json.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_lockfree.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_logging.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_main.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_optional.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_param.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_parser.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_serializer.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_thread_group.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_threaditer.cc -> build/lib/xgboost/dmlc-core/test/unittest
copying xgboost/dmlc-core/test/unittest/unittest_threaditer_exc_handling.cc -> build/lib/xgboost/dmlc-core/test/unittest
creating build/lib/xgboost/dmlc-core/tracker
copying xgboost/dmlc-core/tracker/README.md -> build/lib/xgboost/dmlc-core/tracker
copying xgboost/dmlc-core/tracker/dmlc-submit -> build/lib/xgboost/dmlc-core/tracker
creating build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/__init__.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/kubernetes.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/launcher.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/local.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/mesos.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/mpi.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/opts.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/sge.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/slurm.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/ssh.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/submit.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/tracker.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
copying xgboost/dmlc-core/tracker/dmlc_tracker/yarn.py -> build/lib/xgboost/dmlc-core/tracker/dmlc_tracker
creating build/lib/xgboost/dmlc-core/tracker/yarn
copying xgboost/dmlc-core/tracker/yarn/.gitignore -> build/lib/xgboost/dmlc-core/tracker/yarn
copying xgboost/dmlc-core/tracker/yarn/README.md -> build/lib/xgboost/dmlc-core/tracker/yarn
copying xgboost/dmlc-core/tracker/yarn/build.bat -> build/lib/xgboost/dmlc-core/tracker/yarn
copying xgboost/dmlc-core/tracker/yarn/build.sh -> build/lib/xgboost/dmlc-core/tracker/yarn
copying xgboost/dmlc-core/tracker/yarn/pom.xml -> build/lib/xgboost/dmlc-core/tracker/yarn
creating build/lib/xgboost/dmlc-core/tracker/yarn/src
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn
creating build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc/ApplicationMaster.java -> build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc/Client.java -> build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc/TaskRecord.java -> build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
creating build/lib/xgboost/dmlc-core/windows
copying xgboost/dmlc-core/windows/.gitignore -> build/lib/xgboost/dmlc-core/windows
copying xgboost/dmlc-core/windows/README.md -> build/lib/xgboost/dmlc-core/windows
copying xgboost/dmlc-core/windows/dmlc.sln -> build/lib/xgboost/dmlc-core/windows
creating build/lib/xgboost/dmlc-core/windows/dmlc
copying xgboost/dmlc-core/windows/dmlc/dmlc.vcxproj -> build/lib/xgboost/dmlc-core/windows/dmlc
creating build/lib/xgboost/include
creating build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/base.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/c_api.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/data.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/feature_map.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/gbm.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/learner.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/linear_updater.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/logging.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/metric.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/objective.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/predictor.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/tree_model.h -> build/lib/xgboost/include/xgboost
copying xgboost/include/xgboost/tree_updater.h -> build/lib/xgboost/include/xgboost
creating build/lib/xgboost/lib
copying xgboost/lib/libxgboost.dylib -> build/lib/xgboost/lib
creating build/lib/xgboost/make
copying xgboost/make/config.mk -> build/lib/xgboost/make
copying xgboost/make/mingw64.mk -> build/lib/xgboost/make
copying xgboost/make/minimum.mk -> build/lib/xgboost/make
copying xgboost/make/minimum_parallel.mk -> build/lib/xgboost/make
copying xgboost/make/travis.mk -> build/lib/xgboost/make
creating build/lib/xgboost/rabit
copying xgboost/rabit/.git -> build/lib/xgboost/rabit
copying xgboost/rabit/.gitignore -> build/lib/xgboost/rabit
copying xgboost/rabit/.travis.yml -> build/lib/xgboost/rabit
copying xgboost/rabit/CMakeLists.txt -> build/lib/xgboost/rabit
copying xgboost/rabit/LICENSE -> build/lib/xgboost/rabit
copying xgboost/rabit/Makefile -> build/lib/xgboost/rabit
copying xgboost/rabit/README.md -> build/lib/xgboost/rabit
creating build/lib/xgboost/rabit/cmake
copying xgboost/rabit/cmake/Config.cmake.in -> build/lib/xgboost/rabit/cmake
creating build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/.gitignore -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/Doxyfile -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/Makefile -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/conf.py -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/cpp_api.md -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/guide.md -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/index.md -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/parameters.md -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/python-requirements.txt -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/python_api.md -> build/lib/xgboost/rabit/doc
copying xgboost/rabit/doc/sphinx_util.py -> build/lib/xgboost/rabit/doc
creating build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/Makefile -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/README -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/basic.cc -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/basic.py -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/broadcast.cc -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/broadcast.py -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/lazy_allreduce.cc -> build/lib/xgboost/rabit/guide
copying xgboost/rabit/guide/lazy_allreduce.py -> build/lib/xgboost/rabit/guide
creating build/lib/xgboost/rabit/include
creating build/lib/xgboost/rabit/include/dmlc
copying xgboost/rabit/include/dmlc/README.md -> build/lib/xgboost/rabit/include/dmlc
copying xgboost/rabit/include/dmlc/base.h -> build/lib/xgboost/rabit/include/dmlc
copying xgboost/rabit/include/dmlc/io.h -> build/lib/xgboost/rabit/include/dmlc
copying xgboost/rabit/include/dmlc/logging.h -> build/lib/xgboost/rabit/include/dmlc
copying xgboost/rabit/include/dmlc/serializer.h -> build/lib/xgboost/rabit/include/dmlc
copying xgboost/rabit/include/dmlc/type_traits.h -> build/lib/xgboost/rabit/include/dmlc
creating build/lib/xgboost/rabit/include/rabit
copying xgboost/rabit/include/rabit/c_api.h -> build/lib/xgboost/rabit/include/rabit
copying xgboost/rabit/include/rabit/rabit.h -> build/lib/xgboost/rabit/include/rabit
copying xgboost/rabit/include/rabit/serializable.h -> build/lib/xgboost/rabit/include/rabit
creating build/lib/xgboost/rabit/include/rabit/internal
copying xgboost/rabit/include/rabit/internal/engine.h -> build/lib/xgboost/rabit/include/rabit/internal
copying xgboost/rabit/include/rabit/internal/io.h -> build/lib/xgboost/rabit/include/rabit/internal
copying xgboost/rabit/include/rabit/internal/rabit-inl.h -> build/lib/xgboost/rabit/include/rabit/internal
copying xgboost/rabit/include/rabit/internal/timer.h -> build/lib/xgboost/rabit/include/rabit/internal
copying xgboost/rabit/include/rabit/internal/utils.h -> build/lib/xgboost/rabit/include/rabit/internal
creating build/lib/xgboost/rabit/lib
copying xgboost/rabit/lib/README.md -> build/lib/xgboost/rabit/lib
creating build/lib/xgboost/rabit/python
copying xgboost/rabit/python/rabit.py -> build/lib/xgboost/rabit/python
creating build/lib/xgboost/rabit/scripts
copying xgboost/rabit/scripts/travis_runtest.sh -> build/lib/xgboost/rabit/scripts
copying xgboost/rabit/scripts/travis_script.sh -> build/lib/xgboost/rabit/scripts
creating build/lib/xgboost/rabit/src
copying xgboost/rabit/src/README.md -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/allreduce_base.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/allreduce_base.h -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/allreduce_mock.h -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/allreduce_robust-inl.h -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/allreduce_robust.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/allreduce_robust.h -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/c_api.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/engine.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/engine_base.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/engine_empty.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/engine_mock.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/engine_mpi.cc -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/socket.h -> build/lib/xgboost/rabit/src
copying xgboost/rabit/src/thread_local.h -> build/lib/xgboost/rabit/src
creating build/lib/xgboost/rabit/test
copying xgboost/rabit/test/.gitignore -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/Makefile -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/README.md -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/lazy_recover.cc -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/local_recover.cc -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/local_recover.py -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/model_recover.cc -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/speed_runner.py -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/speed_test.cc -> build/lib/xgboost/rabit/test
copying xgboost/rabit/test/test.mk -> build/lib/xgboost/rabit/test
creating build/lib/xgboost/src
copying xgboost/src/cli_main.cc -> build/lib/xgboost/src
copying xgboost/src/learner.cc -> build/lib/xgboost/src
copying xgboost/src/logging.cc -> build/lib/xgboost/src
creating build/lib/xgboost/src/c_api
copying xgboost/src/c_api/c_api.cc -> build/lib/xgboost/src/c_api
copying xgboost/src/c_api/c_api_error.cc -> build/lib/xgboost/src/c_api
copying xgboost/src/c_api/c_api_error.h -> build/lib/xgboost/src/c_api
creating build/lib/xgboost/src/common
copying xgboost/src/common/avx_helpers.h -> build/lib/xgboost/src/common
copying xgboost/src/common/base64.h -> build/lib/xgboost/src/common
copying xgboost/src/common/bitmap.h -> build/lib/xgboost/src/common
copying xgboost/src/common/column_matrix.h -> build/lib/xgboost/src/common
copying xgboost/src/common/common.cc -> build/lib/xgboost/src/common
copying xgboost/src/common/common.h -> build/lib/xgboost/src/common
copying xgboost/src/common/compressed_iterator.h -> build/lib/xgboost/src/common
copying xgboost/src/common/config.h -> build/lib/xgboost/src/common
copying xgboost/src/common/device_helpers.cuh -> build/lib/xgboost/src/common
copying xgboost/src/common/gpu_set.h -> build/lib/xgboost/src/common
copying xgboost/src/common/group_data.h -> build/lib/xgboost/src/common
copying xgboost/src/common/hist_util.cc -> build/lib/xgboost/src/common
copying xgboost/src/common/hist_util.cu -> build/lib/xgboost/src/common
copying xgboost/src/common/hist_util.h -> build/lib/xgboost/src/common
copying xgboost/src/common/host_device_vector.cc -> build/lib/xgboost/src/common
copying xgboost/src/common/host_device_vector.cu -> build/lib/xgboost/src/common
copying xgboost/src/common/host_device_vector.h -> build/lib/xgboost/src/common
copying xgboost/src/common/io.h -> build/lib/xgboost/src/common
copying xgboost/src/common/math.h -> build/lib/xgboost/src/common
copying xgboost/src/common/quantile.h -> build/lib/xgboost/src/common
copying xgboost/src/common/random.h -> build/lib/xgboost/src/common
copying xgboost/src/common/row_set.h -> build/lib/xgboost/src/common
copying xgboost/src/common/span.h -> build/lib/xgboost/src/common
copying xgboost/src/common/sync.h -> build/lib/xgboost/src/common
copying xgboost/src/common/timer.h -> build/lib/xgboost/src/common
creating build/lib/xgboost/src/data
copying xgboost/src/data/data.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/simple_csr_source.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/simple_csr_source.h -> build/lib/xgboost/src/data
copying xgboost/src/data/simple_dmatrix.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/simple_dmatrix.h -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_dmatrix.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_dmatrix.h -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_raw_format.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_source.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_source.h -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_writer.cc -> build/lib/xgboost/src/data
copying xgboost/src/data/sparse_page_writer.h -> build/lib/xgboost/src/data
creating build/lib/xgboost/src/gbm
copying xgboost/src/gbm/gblinear.cc -> build/lib/xgboost/src/gbm
copying xgboost/src/gbm/gblinear_model.h -> build/lib/xgboost/src/gbm
copying xgboost/src/gbm/gbm.cc -> build/lib/xgboost/src/gbm
copying xgboost/src/gbm/gbtree.cc -> build/lib/xgboost/src/gbm
copying xgboost/src/gbm/gbtree_model.h -> build/lib/xgboost/src/gbm
creating build/lib/xgboost/src/linear
copying xgboost/src/linear/coordinate_common.h -> build/lib/xgboost/src/linear
copying xgboost/src/linear/linear_updater.cc -> build/lib/xgboost/src/linear
copying xgboost/src/linear/updater_coordinate.cc -> build/lib/xgboost/src/linear
copying xgboost/src/linear/updater_gpu_coordinate.cu -> build/lib/xgboost/src/linear
copying xgboost/src/linear/updater_shotgun.cc -> build/lib/xgboost/src/linear
creating build/lib/xgboost/src/metric
copying xgboost/src/metric/elementwise_metric.cc -> build/lib/xgboost/src/metric
copying xgboost/src/metric/metric.cc -> build/lib/xgboost/src/metric
copying xgboost/src/metric/multiclass_metric.cc -> build/lib/xgboost/src/metric
copying xgboost/src/metric/rank_metric.cc -> build/lib/xgboost/src/metric
creating build/lib/xgboost/src/objective
copying xgboost/src/objective/hinge.cc -> build/lib/xgboost/src/objective
copying xgboost/src/objective/multiclass_obj.cc -> build/lib/xgboost/src/objective
copying xgboost/src/objective/objective.cc -> build/lib/xgboost/src/objective
copying xgboost/src/objective/rank_obj.cc -> build/lib/xgboost/src/objective
copying xgboost/src/objective/regression_loss.h -> build/lib/xgboost/src/objective
copying xgboost/src/objective/regression_obj.cc -> build/lib/xgboost/src/objective
copying xgboost/src/objective/regression_obj_gpu.cu -> build/lib/xgboost/src/objective
creating build/lib/xgboost/src/predictor
copying xgboost/src/predictor/cpu_predictor.cc -> build/lib/xgboost/src/predictor
copying xgboost/src/predictor/gpu_predictor.cu -> build/lib/xgboost/src/predictor
copying xgboost/src/predictor/predictor.cc -> build/lib/xgboost/src/predictor
creating build/lib/xgboost/src/tree
copying xgboost/src/tree/fast_hist_param.h -> build/lib/xgboost/src/tree
copying xgboost/src/tree/param.h -> build/lib/xgboost/src/tree
copying xgboost/src/tree/split_evaluator.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/split_evaluator.h -> build/lib/xgboost/src/tree
copying xgboost/src/tree/tree_model.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/tree_updater.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_basemaker-inl.h -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_colmaker.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_fast_hist.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_gpu.cu -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_gpu_common.cuh -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_gpu_hist.cu -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_histmaker.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_prune.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_refresh.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_skmaker.cc -> build/lib/xgboost/src/tree
copying xgboost/src/tree/updater_sync.cc -> build/lib/xgboost/src/tree
creating build/bdist.macosx-10.6-x86_64
creating build/bdist.macosx-10.6-x86_64/egg
creating build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/rabit.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/callback.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/compat.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/include
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/feature_map.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/tree_updater.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/metric.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/learner.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/c_api.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/data.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/tree_model.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/objective.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/logging.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/linear_updater.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/predictor.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/gbm.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/include/xgboost/base.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/include/xgboost
copying build/lib/xgboost/plotting.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/__init__.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/core.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/build-python.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/make
copying build/lib/xgboost/make/minimum.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/make
copying build/lib/xgboost/make/minimum_parallel.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/make
copying build/lib/xgboost/make/mingw64.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/make
copying build/lib/xgboost/make/config.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/make
copying build/lib/xgboost/make/travis.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/make
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_env.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_main.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_json.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_threaditer_exc_handling.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_serializer.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/dmlc_unittest.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_threaditer.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_param.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_parser.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_logging.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_inputsplit.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_config.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_array_view.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/CMakeLists.txt -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_thread_group.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_optional.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_any.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/unittest/unittest_lockfree.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test/unittest
copying build/lib/xgboost/dmlc-core/test/iostream_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/recordio_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/split_repeat_read_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/strtonum_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/registry_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/dataiter_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/libsvm_parser_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/csv_parser_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/filesys_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/split_read_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/split_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/parameter_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/libfm_parser_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/logging_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/dmlc_test.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
copying build/lib/xgboost/dmlc-core/test/stream_read_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/test
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/cmake
copying build/lib/xgboost/dmlc-core/cmake/Utils.cmake -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/cmake
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/cmake/Modules
copying build/lib/xgboost/dmlc-core/cmake/Modules/FindHDFS.cmake -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/cmake/Modules
copying build/lib/xgboost/dmlc-core/cmake/lint.cmake -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/cmake
copying build/lib/xgboost/dmlc-core/Makefile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/example
copying build/lib/xgboost/dmlc-core/example/parameter.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/example
copying build/lib/xgboost/dmlc-core/example/dmlc_example.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/example
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/thread_group.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/memory_io.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/input_split_shuffle.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/config.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/concurrency.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/threadediter.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/parameter.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/thread_local.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/endian.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/data.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/logging.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/registry.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/optional.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/timer.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/serializer.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/common.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/json.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/io.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/omp.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/memory.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/lua.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/blockingconcurrentqueue.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/type_traits.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/array_view.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/any.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/concurrentqueue.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/recordio.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/include/dmlc/base.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/include/dmlc
copying build/lib/xgboost/dmlc-core/LICENSE -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/submit.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/slurm.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/local.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/__init__.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/sge.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/yarn.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/mpi.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/kubernetes.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/opts.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/mesos.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/tracker.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/launcher.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc_tracker/ssh.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker
copying build/lib/xgboost/dmlc-core/tracker/dmlc-submit -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn
copying build/lib/xgboost/dmlc-core/tracker/yarn/pom.xml -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn
copying build/lib/xgboost/dmlc-core/tracker/yarn/build.bat -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn
copying build/lib/xgboost/dmlc-core/tracker/yarn/build.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn
copying build/lib/xgboost/dmlc-core/tracker/yarn/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn
copying build/lib/xgboost/dmlc-core/tracker/yarn/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc/TaskRecord.java -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc/ApplicationMaster.java -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying build/lib/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc/Client.java -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/yarn/src/main/java/org/apache/hadoop/yarn/dmlc
copying build/lib/xgboost/dmlc-core/tracker/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker
copying build/lib/xgboost/dmlc-core/.editorconfig -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
copying build/lib/xgboost/dmlc-core/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
copying build/lib/xgboost/dmlc-core/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/make
copying build/lib/xgboost/dmlc-core/make/dmlc.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/make
copying build/lib/xgboost/dmlc-core/make/config.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/make
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts
copying build/lib/xgboost/dmlc-core/scripts/setup_nvcc.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts
copying build/lib/xgboost/dmlc-core/scripts/packages.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts/travis
copying build/lib/xgboost/dmlc-core/scripts/travis/travis_before_cache.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts/travis
copying build/lib/xgboost/dmlc-core/scripts/travis/travis_script.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts/travis
copying build/lib/xgboost/dmlc-core/scripts/travis/travis_setup_env.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts/travis
copying build/lib/xgboost/dmlc-core/scripts/travis/travis_osx_install.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts/travis
copying build/lib/xgboost/dmlc-core/scripts/lint.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/README -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/Makefile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/sphinx_util.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/conf.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/parameter.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/index.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
copying build/lib/xgboost/dmlc-core/doc/Doxyfile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/windows
copying build/lib/xgboost/dmlc-core/windows/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/windows
copying build/lib/xgboost/dmlc-core/windows/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/windows
copying build/lib/xgboost/dmlc-core/windows/dmlc.sln -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/windows
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/windows/dmlc
copying build/lib/xgboost/dmlc-core/windows/dmlc/dmlc.vcxproj -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/windows/dmlc
copying build/lib/xgboost/dmlc-core/.git -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
copying build/lib/xgboost/dmlc-core/CMakeLists.txt -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
copying build/lib/xgboost/dmlc-core/.travis.yml -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src
copying build/lib/xgboost/dmlc-core/src/data.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src
copying build/lib/xgboost/dmlc-core/src/recordio.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/line_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/uri_spec.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/input_split_base.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/azure_filesys.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/s3_filesys.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/filesys.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/cached_input_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/hdfs_filesys.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/recordio_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/single_threaded_input_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/line_split.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/indexed_recordio_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/azure_filesys.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/indexed_recordio_split.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/local_filesys.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/hdfs_filesys.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/single_file_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/threaded_input_split.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/input_split_base.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/s3_filesys.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/recordio_split.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/filesys.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io/local_filesys.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/io
copying build/lib/xgboost/dmlc-core/src/io.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/libsvm_parser.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/strtonum.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/parser.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/row_block.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/disk_row_iter.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/csv_parser.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/basic_row_iter.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/libfm_parser.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/data/text_parser.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src/data
copying build/lib/xgboost/dmlc-core/src/config.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/lib
copying build/lib/xgboost/lib/libxgboost.dylib -> build/bdist.macosx-10.6-x86_64/egg/xgboost/lib
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/broadcast.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/README -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/Makefile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/lazy_allreduce.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/basic.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/lazy_allreduce.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/basic.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
copying build/lib/xgboost/rabit/guide/broadcast.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/local_recover.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/Makefile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/lazy_recover.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/speed_test.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/model_recover.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/test.mk -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/speed_runner.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
copying build/lib/xgboost/rabit/test/local_recover.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/cmake
copying build/lib/xgboost/rabit/cmake/Config.cmake.in -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/cmake
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/python
copying build/lib/xgboost/rabit/python/rabit.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/python
copying build/lib/xgboost/rabit/Makefile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit
copying build/lib/xgboost/rabit/include/rabit/c_api.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit/internal
copying build/lib/xgboost/rabit/include/rabit/internal/utils.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit/internal
copying build/lib/xgboost/rabit/include/rabit/internal/engine.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit/internal
copying build/lib/xgboost/rabit/include/rabit/internal/rabit-inl.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit/internal
copying build/lib/xgboost/rabit/include/rabit/internal/timer.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit/internal
copying build/lib/xgboost/rabit/include/rabit/internal/io.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit/internal
copying build/lib/xgboost/rabit/include/rabit/serializable.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit
copying build/lib/xgboost/rabit/include/rabit/rabit.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/rabit
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/include/dmlc/logging.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/include/dmlc/serializer.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/include/dmlc/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/include/dmlc/io.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/include/dmlc/type_traits.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/include/dmlc/base.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/include/dmlc
copying build/lib/xgboost/rabit/LICENSE -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
copying build/lib/xgboost/rabit/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
copying build/lib/xgboost/rabit/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/scripts
copying build/lib/xgboost/rabit/scripts/travis_runtest.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/scripts
copying build/lib/xgboost/rabit/scripts/travis_script.sh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/scripts
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/lib
copying build/lib/xgboost/rabit/lib/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/lib
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/parameters.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/python_api.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/Makefile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/sphinx_util.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/python-requirements.txt -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/conf.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/.gitignore -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/index.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/guide.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/Doxyfile -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/doc/cpp_api.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc
copying build/lib/xgboost/rabit/.git -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
copying build/lib/xgboost/rabit/CMakeLists.txt -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
copying build/lib/xgboost/rabit/.travis.yml -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/allreduce_robust.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/engine_base.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/engine_mock.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/thread_local.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/engine.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/c_api.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/allreduce_mock.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/allreduce_base.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/engine_mpi.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/engine_empty.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/README.md -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/allreduce_robust-inl.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/allreduce_robust.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/socket.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/rabit/src/allreduce_base.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/src
copying build/lib/xgboost/libpath.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/sklearn.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/VERSION -> build/bdist.macosx-10.6-x86_64/egg/xgboost
copying build/lib/xgboost/training.py -> build/bdist.macosx-10.6-x86_64/egg/xgboost
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_sync.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_refresh.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_fast_hist.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_basemaker-inl.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/tree_updater.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_gpu.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/fast_hist_param.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/tree_model.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_prune.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/param.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/split_evaluator.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_histmaker.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_skmaker.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/split_evaluator.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_colmaker.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_gpu_common.cuh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/tree/updater_gpu_hist.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/tree
copying build/lib/xgboost/src/learner.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/linear
copying build/lib/xgboost/src/linear/updater_shotgun.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/linear
copying build/lib/xgboost/src/linear/coordinate_common.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/linear
copying build/lib/xgboost/src/linear/updater_gpu_coordinate.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/linear
copying build/lib/xgboost/src/linear/updater_coordinate.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/linear
copying build/lib/xgboost/src/linear/linear_updater.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/linear
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/rank_obj.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/multiclass_obj.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/regression_obj.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/hinge.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/objective.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/regression_obj_gpu.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
copying build/lib/xgboost/src/objective/regression_loss.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/objective
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/avx_helpers.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/base64.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/sync.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/hist_util.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/config.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/hist_util.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/row_set.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/common.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/group_data.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/quantile.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/host_device_vector.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/timer.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/common.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/io.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/device_helpers.cuh -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/hist_util.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/host_device_vector.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/compressed_iterator.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/math.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/span.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/column_matrix.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/bitmap.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/host_device_vector.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/gpu_set.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
copying build/lib/xgboost/src/common/random.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/common
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/gbm
copying build/lib/xgboost/src/gbm/gbm.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/gbm
copying build/lib/xgboost/src/gbm/gblinear.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/gbm
copying build/lib/xgboost/src/gbm/gblinear_model.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/gbm
copying build/lib/xgboost/src/gbm/gbtree_model.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/gbm
copying build/lib/xgboost/src/gbm/gbtree.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/gbm
copying build/lib/xgboost/src/cli_main.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src
copying build/lib/xgboost/src/logging.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/predictor
copying build/lib/xgboost/src/predictor/cpu_predictor.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/predictor
copying build/lib/xgboost/src/predictor/gpu_predictor.cu -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/predictor
copying build/lib/xgboost/src/predictor/predictor.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/predictor
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/metric
copying build/lib/xgboost/src/metric/multiclass_metric.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/metric
copying build/lib/xgboost/src/metric/elementwise_metric.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/metric
copying build/lib/xgboost/src/metric/metric.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/metric
copying build/lib/xgboost/src/metric/rank_metric.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/metric
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_writer.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/data.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/simple_csr_source.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_dmatrix.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_source.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_source.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/simple_dmatrix.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_dmatrix.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_writer.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/simple_csr_source.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/sparse_page_raw_format.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
copying build/lib/xgboost/src/data/simple_dmatrix.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/data
creating build/bdist.macosx-10.6-x86_64/egg/xgboost/src/c_api
copying build/lib/xgboost/src/c_api/c_api_error.h -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/c_api
copying build/lib/xgboost/src/c_api/c_api.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/c_api
copying build/lib/xgboost/src/c_api/c_api_error.cc -> build/bdist.macosx-10.6-x86_64/egg/xgboost/src/c_api
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit.py to rabit.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/callback.py to callback.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/compat.py to compat.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/plotting.py to plotting.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/__init__.py to __init__.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/core.py to core.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/submit.py to submit.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/slurm.py to slurm.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/local.py to local.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/__init__.py to __init__.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/sge.py to sge.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/yarn.py to yarn.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/mpi.py to mpi.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/kubernetes.py to kubernetes.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/opts.py to opts.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/mesos.py to mesos.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/tracker.py to tracker.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/launcher.py to launcher.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/tracker/dmlc_tracker/ssh.py to ssh.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/scripts/lint.py to lint.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc/sphinx_util.py to sphinx_util.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/dmlc-core/doc/conf.py to conf.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide/lazy_allreduce.py to lazy_allreduce.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide/basic.py to basic.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/guide/broadcast.py to broadcast.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test/speed_runner.py to speed_runner.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/test/local_recover.py to local_recover.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/python/rabit.py to rabit.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc/sphinx_util.py to sphinx_util.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/rabit/doc/conf.py to conf.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/libpath.py to libpath.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/sklearn.py to sklearn.pyc
byte-compiling build/bdist.macosx-10.6-x86_64/egg/xgboost/training.py to training.pyc
installing package data to build/bdist.macosx-10.6-x86_64/egg
running install_data
copying ../lib/libxgboost.dylib -> build/bdist.macosx-10.6-x86_64/egg/xgboost
creating build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
copying xgboost.egg-info/PKG-INFO -> build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
copying xgboost.egg-info/SOURCES.txt -> build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
copying xgboost.egg-info/dependency_links.txt -> build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
copying xgboost.egg-info/not-zip-safe -> build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
copying xgboost.egg-info/requires.txt -> build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
copying xgboost.egg-info/top_level.txt -> build/bdist.macosx-10.6-x86_64/egg/EGG-INFO
writing build/bdist.macosx-10.6-x86_64/egg/EGG-INFO/native_libs.txt
creating dist
creating 'dist/xgboost-0.80-py2.7.egg' and adding 'build/bdist.macosx-10.6-x86_64/egg' to it
removing 'build/bdist.macosx-10.6-x86_64/egg' (and everything under it)
Processing xgboost-0.80-py2.7.egg
creating /anaconda2/lib/python2.7/site-packages/xgboost-0.80-py2.7.egg
Extracting xgboost-0.80-py2.7.egg to /anaconda2/lib/python2.7/site-packages
Adding xgboost 0.80 to easy-install.pth file

Installed /anaconda2/lib/python2.7/site-packages/xgboost-0.80-py2.7.egg
Processing dependencies for xgboost==0.80
Searching for scipy==1.1.0
Best match: scipy 1.1.0
Adding scipy 1.1.0 to easy-install.pth file

Using /anaconda2/lib/python2.7/site-packages
Searching for numpy==1.14.3
Best match: numpy 1.14.3
Adding numpy 1.14.3 to easy-install.pth file

Using /anaconda2/lib/python2.7/site-packages
Finished processing dependencies for xgboost==0.80
MacBook-Pro-3:python-package weidong$ python
Python 2.7.15 |Anaconda, Inc.| (default, May  1 2018, 18:37:05) 
[GCC 4.2.1 Compatible Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import tensorflow
/anaconda2/lib/python2.7/site-packages/h5py/__init__.py:36: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` is deprecated. In future, it will be treated as `np.float64 == np.dtype(float).type`.
  from ._conv import register_converters as _register_converters
>>> import xgboost
>>> mac

猜你喜欢

转载自blog.csdn.net/caicaiatnbu/article/details/82759092