- Add plugin host initialization for LLVM mode (fixes method_id injection) - Add FileBox method_id injection test - Enhance MIR14 stability test - Add warning for Mock LLVM implementation - Create build scripts for JIT/LLVM with proper settings (24 threads, timeout) - Update CLAUDE.md with build instructions and FileBox test results Note: FileBox file I/O still not working in LLVM execution (separate issue) 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
6 lines
222 B
Bash
6 lines
222 B
Bash
#!/bin/bash
|
|
# LLVM ビルド - 24スレッド並列
|
|
echo "🚀 LLVM ビルドを開始します..."
|
|
export LLVM_SYS_180_PREFIX=/usr/lib/llvm-18
|
|
cargo build --release --features llvm -j 24
|
|
echo "✅ LLVM ビルド完了!" |