@xaidenlabs/uso 1.1.91 → 1.1.92
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/platforms/wsl.js +3 -12
package/package.json
CHANGED
package/src/platforms/wsl.js
CHANGED
|
@@ -318,18 +318,9 @@ else
|
|
|
318
318
|
fi
|
|
319
319
|
source $HOME/.cargo/env 2>/dev/null || true
|
|
320
320
|
|
|
321
|
-
# --- Solana SBPF Toolchain
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
if run_with_progress "🎯 Installing Solana SBPF target..." 35 55 rustup target add sbpf-solana-solana; then
|
|
325
|
-
echo "✅ SBPF target installed."
|
|
326
|
-
else
|
|
327
|
-
FAILURES="$FAILURES sbpf-target"
|
|
328
|
-
echo "❌ SBPF target installation failed."
|
|
329
|
-
fi
|
|
330
|
-
else
|
|
331
|
-
echo "✅ SBPF target already installed."
|
|
332
|
-
fi
|
|
321
|
+
# --- Solana SBPF Toolchain ---
|
|
322
|
+
# The SBPF target is managed by Solana's custom rustc inside the Solana CLI.
|
|
323
|
+
echo "✅ SBPF target is managed by Solana CLI."
|
|
333
324
|
|
|
334
325
|
# Install cargo-build-sbf
|
|
335
326
|
if ! command -v cargo-build-sbf &> /dev/null; then
|