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,69 @@ 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).
238
+
*Note* - You can explore and use more compilation options in `CMakeLists.txt` and also review common [usage examples](build_from_source.html#usage-examples).
239
+
You can also use a scripted version of the above with an editable CMake options file by doing the
240
+
following:
241
+
242
+
```bash
243
+
cp cmake/cmake_options.yml .
244
+
# Edit to your taste
245
+
$EDITOR cmake_options.yml
246
+
# Launch a local CMake build
247
+
./dev_menu.py menu 1
248
+
```
204
249
205
-
Building from source creates a library called ```libmxnet.so``` in the `lib` folder in your MXNet project root.
250
+
Building from source creates a library called ```libmxnet.so``` in the `build` folder in your MXNet project root.
206
251
207
-
You may also want to add the MXNet shared library to your `LD_LIBRARY_PATH`:
252
+
You may also want to add the MXNet shared library to your `LD_LIBRARY_PATH` and `MXNET_LIBRARY_PATH` accordingly:
0 commit comments