Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

update docs to list cmake required for build from source page #12592

Merged
merged 2 commits into from
Sep 21, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions docs/install/build_from_source.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ This document explains how to build MXNet from source code. Building MXNet from

You need C++ build tools and a BLAS library to build the MXNet shared library. If you want to run MXNet with GPUs, you will need to install [NVDIA CUDA and cuDNN](https://developer.nvidia.com/cuda-downloads) first.

You may use [GNU Make](https://www.gnu.org/software/make/) to build the library but [cmake](https://cmake.org/) is required when building with MKLDNN


### C++ build tools

Expand All @@ -25,7 +27,7 @@ You need C++ build tools and a BLAS library to build the MXNet shared library. I

2. [Git](https://git-scm.com/downloads) for downloading the sources from Github repository.

3. [cmake](https://cmake.org/) is recommended. You may also use [GNU Make](https://www.gnu.org/software/make/) to build the library.



### BLAS library
Expand Down Expand Up @@ -80,7 +82,7 @@ There is a configuration file for make,

## Build Configurations

`cmake` is recommended for building MXNet, however you may use `make` instead.
`cmake` is recommended for building MXNet (and is required to build with MKLDNN), however you may use `make` instead.


### Math Library Selection
Expand Down