Revert "Build for WASM32 and use the LLD linker"

This reverts commit 3cabfa46c3.

I don't need to patch the linker, I need to take a dependency on the one
it's trying to use.
This commit is contained in:
2025-11-19 10:13:07 -06:00
parent 3cabfa46c3
commit f7a49a2760
2 changed files with 0 additions and 24 deletions

View File

@@ -1,23 +0,0 @@
From: Robert Garrett <robertgarrett404@gmail.com>
Date: Tue, 18 Nov 2025 14:11:39 -0600
Subject: Build for WASM32 and use the LLD linker
I'm overriding the build to only produce WASM32 binaries.
---
.cargo/config.toml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.cargo/config.toml b/.cargo/config.toml
index b651240..ef7bb6b 100644
--- a/.cargo/config.toml
+++ b/.cargo/config.toml
@@ -1,5 +1,9 @@
+[build]
+target = "wasm32-unknown-unknown"
+
[target.wasm32-unknown-unknown]
runner = "wasm-server-runner"
+linker = "lld"
[source.crates-io]
replace-with = "vendored-sources"

View File

@@ -1,4 +1,3 @@
0001-Alter-blake3-to-emit-Built-Using-info.patch
0002-Use-pure-Rust-implementation-of-Blake3-parts.patch
0003-Use-mini-as-release-profile.patch
0004-Build-for-WASM32-and-use-the-LLD-linker.patch