An easy-to-host PDS on the ATProtocol, iPhone and MacOS. Maintain control of your keys and data, always.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

docs(identity-wallet): correct libiconv fix description in CLAUDE.md

authored by

Malpercio and committed by
Tangled
0d00e832 c98372cd

+1 -1
+1 -1
apps/identity-wallet/CLAUDE.md
··· 226 226 227 227 Rust proc-macros (e.g. `phf_macros`) are compiled for the host (`aarch64-apple-darwin`) even during an iOS cross-compilation build. The Nix cc-wrapper uses a partial Nix apple-sdk as sysroot, which omits some `/usr/lib` stubs including `libiconv.tbd`. The linker passes `-liconv` but can't find it. 228 228 229 - **Fix:** Already resolved. `src-tauri/.cargo/config.toml` sets `[target.aarch64-apple-darwin].linker` to Xcode's clang, which resolves all macOS system libraries correctly. 229 + **Fix:** Already resolved. `src-tauri/.cargo/config.toml` sets `[target.aarch64-apple-darwin].linker` to Xcode's clang and adds `rustflags = ["-L", ".../MacOSX.sdk/usr/lib"]` so the linker finds `/usr/lib` stubs (including `libiconv.tbd`) from the real Xcode SDK sysroot. 230 230 231 231 --- 232 232