-
Notifications
You must be signed in to change notification settings - Fork 1
README_CMAKE_FIX
GitHub Actions edited this page Jan 2, 2026
·
1 revision
CMake Error: Could NOT find faiss (missing: faiss_DIR)
CMake Error: Could NOT find gRPC (missing: gRPC_DIR)
Obwohl: vcpkg hat beides installiert ✅
Aber: CMake findet es nicht ❌
- vcpkg.cmake setzt
CMAKE_PREFIX_PATH - Aber: PATH wird bei IDE-Builds oder nested CMake zurückgesetzt
- Result: find_package(faiss CONFIG) und find_package(gRPC CONFIG) scheitern
cd C:\VCC\themis
# Script ausführen
.\scripts\fix-cmake-prefix-path.ps1 -Action build -EnableGPU $true -EnableLLM $trueWas passiert:
- Setzt
CMAKE_PREFIX_PATHauf vcpkg install dir - Setzt
-Dfaiss_DIR=...explizit - Setzt
-DgRPC_DIR=...explizit - Führt CMake Configure durch
cd C:\VCC\themis
$VCPKG = "C:\VCC\themis\vcpkg_installed\x64-windows"
cmake -S . -B build-msvc `
-G "Visual Studio 17 2022" -A x64 `
-DCMAKE_TOOLCHAIN_FILE="C:\VCC\themis\vcpkg\scripts\buildsystems\vcpkg.cmake" `
-DCMAKE_PREFIX_PATH="$VCPKG;$VCPKG\share" `
-Dfaiss_DIR="$VCPKG\share\faiss" `
-DgRPC_DIR="$VCPKG\share\grpc"Patch in 4 Dateien:
- CMakeLists.txt - CMAKE_PREFIX_PATH Fallback hinzufügen
- CMakeLists.txt - FAISS find_package mit HINTS
- CMakeLists.txt - gRPC find_package mit HINTS
- plugins/rpc/grpc/CMakeLists.txt - gRPC_DIR explizit setzen
Details: Siehe IMPLEMENTATION_CHECKLIST.md
Nach CMake Configure sollte dies in Konsole stehen:
-- v1.3.5: CMAKE_PREFIX_PATH set to C:\VCC\themis\vcpkg_installed\x64-windows\share;...
-- Found faiss: C:\VCC\themis\vcpkg_installed\x64-windows\share\faiss\faiss-config.cmake
-- Found gRPC: C:\VCC\themis\vcpkg_installed\x64-windows\share\grpc\gRPCConfig.cmake
-- v1.3.5: faiss found at C:\VCC\themis\vcpkg_installed\x64-windows\share\faiss
-- v1.3.5: gRPC found at C:\VCC\themis\vcpkg_installed\x64-windows\share\grpc
| Was | Pfad |
|---|---|
| FAISS Config | vcpkg_installed\x64-windows\share\faiss\faiss-config.cmake |
| FAISS Library | vcpkg_installed\x64-windows\lib\faiss.lib |
| gRPC Config | vcpkg_installed\x64-windows\share\grpc\gRPCConfig.cmake |
| gRPC Library |
vcpkg_installed\x64-windows\lib\grpc.lib (MUSS statisch sein!) |
Falls Code-Patch noch nicht durchgeführt:
# 1. Diagnose
.\scripts\fix-cmake-prefix-path.ps1 -Action diagnose
# 2. Mit Script bauen
.\scripts\fix-cmake-prefix-path.ps1 -Action build
# 3. Oder manuell mit Direktive Pfade
cmake -S . -B build-msvc `
-G "Visual Studio 17 2022" -A x64 `
-DCMAKE_TOOLCHAIN_FILE="C:\VCC\themis\vcpkg\scripts\buildsystems\vcpkg.cmake" `
-DCMAKE_PREFIX_PATH="C:\VCC\themis\vcpkg_installed\x64-windows;C:\VCC\themis\vcpkg_installed\x64-windows\share" `
-Dfaiss_DIR="C:\VCC\themis\vcpkg_installed\x64-windows\share\faiss" `
-DgRPC_DIR="C:\VCC\themis\vcpkg_installed\x64-windows\share\grpc" `
-DTHEMIS_ENABLE_GPU=ON
# 4. Build
cmake --build build-msvc --config Release --target themis_server --parallel 8- Vollständige Anleitung: CMAKE_FIND_PACKAGE_SOLUTIONS.md
- Schritt-für-Schritt: IMPLEMENTATION_CHECKLIST.md
- GitHub Issues & Referenzen: GITHUB_ISSUES_REFERENCE.md
- Automatisiertes Skript: scripts/fix-cmake-prefix-path.ps1
cd C:\VCC\themis
.\scripts\fix-cmake-prefix-path.ps1 -Action build -EnableGPU $trueFertig in 30 Sekunden!
Version: 1.3.5
Datum: 2025-12-26
Status: 🟢 Ready to use
ThemisDB v1.3.4 | GitHub | Documentation | Discussions | License
Last synced: January 02, 2026 | Commit: 6add659
Version: 1.3.0 | Stand: Dezember 2025
- Übersicht
- Home
- Dokumentations-Index
- Quick Reference
- Sachstandsbericht 2025
- Features
- Roadmap
- Ecosystem Overview
- Strategische Übersicht
- Geo/Relational Storage
- RocksDB Storage
- MVCC Design
- Transaktionen
- Time-Series
- Memory Tuning
- Chain of Thought Storage
- Query Engine & AQL
- AQL Syntax
- Explain & Profile
- Rekursive Pfadabfragen
- Temporale Graphen
- Zeitbereichs-Abfragen
- Semantischer Cache
- Hybrid Queries (Phase 1.5)
- AQL Hybrid Queries
- Hybrid Queries README
- Hybrid Query Benchmarks
- Subquery Quick Reference
- Subquery Implementation
- Content Pipeline
- Architektur-Details
- Ingestion
- JSON Ingestion Spec
- Enterprise Ingestion Interface
- Geo-Processor Design
- Image-Processor Design
- Hybrid Search Design
- Fulltext API
- Hybrid Fusion API
- Stemming
- Performance Tuning
- Migration Guide
- Future Work
- Pagination Benchmarks
- Enterprise README
- Scalability Features
- HTTP Client Pool
- Build Guide
- Implementation Status
- Final Report
- Integration Analysis
- Enterprise Strategy
- Verschlüsselungsstrategie
- Verschlüsselungsdeployment
- Spaltenverschlüsselung
- Encryption Next Steps
- Multi-Party Encryption
- Key Rotation Strategy
- Security Encryption Gap Analysis
- Audit Logging
- Audit & Retention
- Compliance Audit
- Compliance
- Extended Compliance Features
- Governance-Strategie
- Compliance-Integration
- Governance Usage
- Security/Compliance Review
- Threat Model
- Security Hardening Guide
- Security Audit Checklist
- Security Audit Report
- Security Implementation
- Development README
- Code Quality Pipeline
- Developers Guide
- Cost Models
- Todo Liste
- Tool Todo
- Core Feature Todo
- Priorities
- Implementation Status
- Roadmap
- Future Work
- Next Steps Analysis
- AQL LET Implementation
- Development Audit
- Sprint Summary (2025-11-17)
- WAL Archiving
- Search Gap Analysis
- Source Documentation Plan
- Changefeed README
- Changefeed CMake Patch
- Changefeed OpenAPI
- Changefeed OpenAPI Auth
- Changefeed SSE Examples
- Changefeed Test Harness
- Changefeed Tests
- Dokumentations-Inventar
- Documentation Summary
- Documentation TODO
- Documentation Gap Analysis
- Documentation Consolidation
- Documentation Final Status
- Documentation Phase 3
- Documentation Cleanup Validation
- API
- Authentication
- Cache
- CDC
- Content
- Geo
- Governance
- Index
- LLM
- Query
- Security
- Server
- Storage
- Time Series
- Transaction
- Utils
Vollständige Dokumentation: https://makr-code.github.io/ThemisDB/