mirror of
https://github.com/NotAShelf/microfetch.git
synced 2026-06-17 09:26:53 +00:00
5 lines
240 B
Bash
Executable file
5 lines
240 B
Bash
Executable file
#!/usr/bin/env sh
|
|
# Link via clang+wild. Wild sits behind the linker (not a rustflag) so a
|
|
# cross-toolchain that overrides the linker drops it instead of choking on
|
|
# --ld-path. Needs clang and wild on PATH.
|
|
exec clang --ld-path=wild "$@"
|