From 04e04ec5a00ed5ff45c926892cd2af0ab76a6d33 Mon Sep 17 00:00:00 2001 From: "tqchen@graphlab.com" Date: Mon, 18 Aug 2014 10:19:47 -0700 Subject: [PATCH] chg readme --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 732e64d7f..ac68a5cf4 100644 --- a/README.md +++ b/README.md @@ -16,8 +16,10 @@ Build ====== * Simply type make * If your compiler does not come with OpenMP support, it will fire an warning telling you that the code will compile into single thread mode, and you will get single thread xgboost -* You may get a error: -lgomp is not found, you can remove -fopenmp flag in Makefile to get single thread xgboost, or upgrade your compiler to compile multi-thread version +* You may get a error: -lgomp is not found + - You can type ```make no_omp=1```, this will get you single thread xgboost + - Alternatively, you can upgrade your compiler to compile multi-thread version * Possible way to build using Visual Studio (not tested): - - In principle, you can put src/xgboost.cpp and src/io/io.cpp into the project, and build xgboost. - - For python module, you need python/xgboost_wrapper.cpp and src/io/io.cpp to build a dll. + - In principle, you can put src/xgboost.cpp and src/io/io.cpp into the project, and build xgboost. + - For python module, you need python/xgboost_wrapper.cpp and src/io/io.cpp to build a dll.