@@ -47,7 +47,7 @@ In the beginning of the building process, the installer provides users the choic
...
@@ -47,7 +47,7 @@ In the beginning of the building process, the installer provides users the choic
If HPVM is selected to be built automatically, the installer allows users to type in the number of threads they want to use.
If HPVM is selected to be built automatically, the installer allows users to type in the number of threads they want to use.
The default number of threads used to build HPVM is two.
The default number of threads used to build HPVM is two.
Alternatively, CMake can be run manually.
Alternatively, CMake can be run manually using the following steps in ./hpvm-release/hpvm directory.
```shell
```shell
mkdir build
mkdir build
cd build
cd build
...
@@ -61,15 +61,14 @@ Some common options that can be used with CMake are:
...
@@ -61,15 +61,14 @@ Some common options that can be used with CMake are:
* -DLLVM_ENABLE_ASSERTIONS=On --- Compile with assertion checks enabled (default is Yes for Debug builds, No for all other build types).
* -DLLVM_ENABLE_ASSERTIONS=On --- Compile with assertion checks enabled (default is Yes for Debug builds, No for all other build types).
In order to manually build and install HPVM, GNU Make can be run using the following.
In order to manually build and install HPVM, GNU Make can be run using the following in the build directory.
```shell
```shell
make -j<number of threads>
make -j<number of threads>
make install
make install
```
```
In the end of the installation process, the installer automatically runs all the regression tests to ensure that the installation is
In the end of the installation process, the installer automatically runs all the regression tests to ensure that the installation is
successful. If HPVM is built and installed manually, the tests can be automatically run by executing the following step from the
successful. If HPVM is built and installed manually, the tests can be automatically run by executing the following step from the ./hpvm-release/hpvm directory.