mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-01 13:37:57 +00:00
a1171e6e81
Co-authored-by: Mira Ressel <mira@parity.io>
14 lines
454 B
Bash
Executable File
14 lines
454 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Wrapper for building with musl.
|
|
#
|
|
# musl unfortunately requires a musl-enabled C compiler (musl-gcc) to be
|
|
# installed, which can be kind of a pain to get installed depending on the
|
|
# distro. That's not a very good user experience.
|
|
#
|
|
# The real musl-gcc wrapper sets the correct system include paths for linking
|
|
# with musl libc library. Since this is not actually used to link any binaries
|
|
# it should most likely work just fine.
|
|
|
|
gcc "$@"
|