zilliztech / building
Install for your project team
Run this command in your project directory to install the skill for your entire team:
mkdir -p .claude/skills/building && curl -L -o skill.zip "https://fastmcp.me/Skills/Download/2902" && unzip -o skill.zip -d .claude/skills/building && rm skill.zip
Project Skills
This skill will be saved in .claude/skills/building/ and checked into git. All team members will have access to it automatically.
Important: Please verify the skill by reviewing its instructions before using it.
Use when building knowhere from source, configuring build options (CPU/GPU/DISKANN/ASAN), or troubleshooting compilation errors
0 views
0 installs
Skill Content
--- name: building description: Use when building knowhere from source, configuring build options (CPU/GPU/DISKANN/ASAN), or troubleshooting compilation errors --- # Building Knowhere ## Prerequisites ```bash # Ubuntu/Debian sudo apt install build-essential libopenblas-openmp-dev libaio-dev python3-dev python3-pip pip3 install conan==1.61.0 --user export PATH=$PATH:$HOME/.local/bin ``` ## Build Commands ```bash mkdir build && cd build conan remote add default-conan-local https://milvus01.jfrog.io/artifactory/api/conan/default-conan-local ``` | Build Type | Command | |------------|---------| | CPU Release | `conan install .. --build=missing -o with_ut=True -s compiler.libcxx=libstdc++11 -s build_type=Release` | | CPU Debug | `conan install .. --build=missing -o with_ut=True -s compiler.libcxx=libstdc++11 -s build_type=Debug` | | GPU (CUVS) | `conan install .. --build=missing -o with_ut=True -o with_cuvs=True -s compiler.libcxx=libstdc++11 -s build_type=Release` | | DISKANN | `conan install .. --build=missing -o with_ut=True -o with_diskann=True -s compiler.libcxx=libstdc++11 -s build_type=Release` | | ASAN (CI default) | `conan install .. --build=missing -o with_ut=True -o with_diskann=True -o with_asan=True -s compiler.libcxx=libstdc++11 -s build_type=Release` | | macOS | `conan install .. --build=missing -o with_ut=True -s compiler.libcxx=libc++ -s build_type=Release` | Then run: `conan build ..` ## Build Options | Option | Description | |--------|-------------| | `with_ut` | Enable unit tests | | `with_diskann` | Enable DISKANN index support | | `with_cuvs` | Enable GPU (CUVS) support | | `with_asan` | Enable AddressSanitizer for memory error detection | ## Common Issues - **libstdc++ errors**: Ensure `-s compiler.libcxx=libstdc++11` matches your system - **Missing dependencies**: Run `conan install` with `--build=missing` - **macOS**: Use `libc++` instead of `libstdc++11` - **ASAN failures**: Check for memory leaks, use-after-free, buffer overflows --- > If this build relates to new features or interface changes, consider updating documentation. See `documenting` skill.