fix compile errors in uLib env

This commit is contained in:
AndreaRigoni
2026-04-03 12:58:36 +00:00
parent 9d6301319b
commit bb24f13fba
7 changed files with 26 additions and 11 deletions

View File

@@ -30,13 +30,13 @@ You can create and activate the environment using either `micromamba` or `conda`
**Using Micromamba:**
```bash
micromamba env create -f condaenv.yml
micromamba activate mutom
micromamba activate uLib
```
**Using Conda:**
```bash
conda env create -f condaenv.yml
conda activate mutom
conda activate uLib
```
### Configure and Build
@@ -70,7 +70,7 @@ cmake --build build -j$(nproc)
A `fast` conan profile is provided that uses **clang**, **lld** (LLVM linker), and **ccache**. Install them into your environment first:
```bash
micromamba install -n mutom -y clang clangxx lld -c conda-forge
micromamba install -n uLib -y clang clangxx lld -c conda-forge
```
Then build using the `fast` profile:
@@ -91,6 +91,6 @@ The `fast` profile is defined at `~/.conan2/profiles/fast` and sets:
### Make python package
```bash
micromamba run -n mutom env USE_CUDA=ON poetry install
micromamba run -n uLib env USE_CUDA=ON poetry install
```