Skip to content
Merged
Show file tree
Hide file tree
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
7 changes: 1 addition & 6 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ You are now in a position to install xeus-cpp into this envirnoment. You can do
mkdir build
cd build
cmake -D CMAKE_BUILD_TYPE=Release -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib ..
make
make install
```

To check that everything is installed correctly you can run the c++ tests by executing the following
Expand All @@ -56,9 +56,4 @@ and the python tests by executing
```bash
cd ./test
pytest -sv .
```
Once the build is passing all the tests you can install it by executing the following from the test folder
```bash
cd ..
make install
```
8 changes: 2 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Now you can compile the kernel from the source by executing (replace `$CONDA_PRE
mkdir build
cd build
cmake .. -D CMAKE_PREFIX_PATH=$CONDA_PREFIX -D CMAKE_INSTALL_PREFIX=$CONDA_PREFIX -D CMAKE_INSTALL_LIBDIR=lib
make
make install
```
To test the build you execute the following to test the C++ tests
```bash
Expand All @@ -54,11 +54,7 @@ and
```bash
pytest -sv .
```
to perform the python tests. Once the build is passing all the tests you can install it by executing the following from the test folder
```bash
cd ..
make install
```
to perform the python tests.

## Installation within a mamba environment (wasm build instructions)

Expand Down