Skip to content

Commit d77ffcb

Browse files
committed
chore: housekeeping — gitignore, config, remove dead stubs
- Merge upstream wolfssl/.gitignore into .gitignore; add local build artifact paths (wolfssl-install/, wolfssl-repo*/) - Update .cargo/config.toml: point WOLFSSL_DIR/WOLFSSL_SRC/rpath at wolfssl-src/wolfssl submodule and wolfssl-install/ - Remove builder-test from workspace (dangling stub with no source)
1 parent bd4bebe commit d77ffcb

4 files changed

Lines changed: 417 additions & 45 deletions

File tree

.cargo/config.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ rustflags = ["-C", "link-arg=-Tmemory.x", "-C", "link-arg=-Tlink.x"]
1919
# Use the local wolfssl build that has HAVE_DILITHIUM and WOLF_CRYPTO_CB enabled.
2020
# Built from ~/wolfssl with -DWOLFSSL_CRYPTOCB=yes -DWOLFSSL_DILITHIUM=yes.
2121
# Overrides the system pkg-config installation at /usr/local (which lacks these flags).
22-
WOLFSSL_DIR = "/home/mark/wolfssl-rs/wolfssl-repo-install"
22+
WOLFSSL_DIR = "/home/mark/wolfssl-rs/wolfssl-install"
2323
# wolfSSL source tree for the vendored build (cryptocb-only / riscv-bare-metal features).
2424
# When those features are active, wolfcrypt-sys bypasses WOLFSSL_DIR and compiles
2525
# wolfSSL from source via wolfssl-src using this path.
26-
WOLFSSL_SRC = "/home/mark/wolfssl-rs/wolfssl-repo"
26+
WOLFSSL_SRC = "/home/mark/wolfssl-rs/wolfssl-src/wolfssl"
2727
# riscv32 C cross-compiler via zig cc.
2828
# Used by the cc crate when compiling wolfssl-src for the riscv32imc-unknown-none-elf target.
2929
CC_riscv32imc_unknown_none_elf = { value = ".cargo/riscv32-cc", relative = true }
@@ -35,4 +35,4 @@ CC_riscv32imc_unknown_none_elf = { value = ".cargo/riscv32-cc", relative = true
3535
# cache entry for /usr/local/lib wins.
3636
# --disable-new-dtags is required: modern binutils defaults to DT_RUNPATH which loses
3737
# to the ldconfig cache, while DT_RPATH takes priority before everything.
38-
rustflags = ["-C", "link-arg=-Wl,--disable-new-dtags,-rpath,/home/mark/wolfssl-rs/wolfssl-repo-install/lib"]
38+
rustflags = ["-C", "link-arg=-Wl,--disable-new-dtags,-rpath,/home/mark/wolfssl-rs/wolfssl-install/lib"]

0 commit comments

Comments
 (0)