クリーンアップ: プロジェクト整理とGitHub公開準備
## 🧹 ルートディレクトリ整理 - batファイル(21個) → tools/windows/llvm-build-attempts/へ移動 - ログファイル → logs/archive/へ移動 - LLVM実行ファイル(計104MB) → .gitignoreに追加して削除 ## 📝 .gitignore更新 - app_*_llvm, app_link, string_len_app を除外 - 大容量バイナリファイルのアップロード防止 ## 🔧 追加のリファクタリング - src/jit/lower/builder/tls.rs: TLS関連を独立モジュール化 ## 📊 整理結果 - ルートディレクトリ: 0個の一時ファイル(完全クリーン) - リポジトリサイズ: 189MB(適切) - 最大追跡ファイル: 5.2MB(許容範囲内) GitHub公開準備完了!🚀 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@ -0,0 +1,20 @@
|
||||
@echo off
|
||||
echo Using existing LLVM at C:\LLVM-18
|
||||
|
||||
REM Set environment variables
|
||||
set "LLVM_SYS_180_PREFIX=C:\LLVM-18"
|
||||
set "LLVM_SYS_180_NO_LIBFFI=1"
|
||||
set "LLVM_SYS_180_FFI_WORKAROUND=1"
|
||||
set "PATH=C:\LLVM-18\bin;%PATH%"
|
||||
|
||||
echo.
|
||||
echo Building Nyash without libffi (AOT only)...
|
||||
cargo build --bin nyash --release --features llvm --no-default-features --features cli,plugins
|
||||
|
||||
echo.
|
||||
if exist target\release\nyash.exe (
|
||||
echo SUCCESS: nyash.exe created!
|
||||
dir target\release\nyash.exe
|
||||
) else (
|
||||
echo Build failed. Trying alternative approach...
|
||||
)
|
||||
Reference in New Issue
Block a user