You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 17, 2023. It is now read-only.
Details on the different math libraries are found in the build from source guide's [Math Library Selection](build_from_source.html#math-library-selection) section.
@@ -170,44 +191,72 @@ If building on CPU and using OpenBLAS:
If building on CPU and using MKL and MKL-DNN (make sure MKL is installed according to [Math Library Selection](build_from_source.html#math-library-selection) and [MKL-DNN README](https://github.com/apache/incubator-mxnet/blob/master/docs/tutorials/mkldnn/MKLDNN_README.md)):
*Note* - USE_OPENCV and USE_BLAS are make file flags to set compilation options to use OpenCV and BLAS library. You can explore and use more compilation options in `make/config.mk` and also review common [usage examples](build_from_source.html#usage-examples).
241
+
*Note* - You can explore and use more compilation options in `CMakeLists.txt` and also review common [usage examples](build_from_source.html#usage-examples).
242
+
You can also use a scripted version of the above with an editable CMake options file by doing the
243
+
following:
244
+
245
+
```bash
246
+
cp cmake/cmake_options.yml .
247
+
# Edit to your taste
248
+
$EDITOR cmake_options.yml
249
+
# Launch a local CMake build
250
+
./dev_menu.py menu 1
251
+
```
204
252
205
-
Building from source creates a library called ```libmxnet.so``` in the `lib` folder in your MXNet project root.
253
+
Building from source creates a library called ```libmxnet.so``` in the `build` folder in your MXNet project root.
206
254
207
-
You may also want to add the MXNet shared library to your `LD_LIBRARY_PATH`:
255
+
You may also want to add the MXNet shared library to your `LD_LIBRARY_PATH` and `MXNET_LIBRARY_PATH` accordingly:
0 commit comments