add musl-clang, a wrapper for system clang installs
authorShiz <hi@shiz.me>
Sun, 28 Jun 2015 21:08:21 +0000 (23:08 +0200)
committerRich Felker <dalias@aerifal.cx>
Mon, 6 Jul 2015 23:52:16 +0000 (23:52 +0000)
commitfb58545f8d1c5fa32122244caeaf3625c12ddc01
tree88a3e261fc41fb4e5a23a351d41961d30423c058
parentf8db6f74b2c74a50c4dec7e30be5215f0e2c37a6
add musl-clang, a wrapper for system clang installs

musl-clang allows the user to compile musl-powered programs using their
already existent clang install, without the need of a special cross compiler.
it achieves this by wrapping around both the system clang install and the
linker and passing them special flags to re-target musl at runtime.
it does only affect invocations done through the special musl-clang wrapper
script, so that the user setup remains fully intact otherwise.

the clang wrapper consists of the compiler frontend wrapper script,
musl-clang, and the linker wrapper script, ld.musl-clang.
musl-clang makes sure clang invokes ld.musl-clang to link objects; neither
script needs to be in PATH for the wrapper to work.
.gitignore
Makefile
configure
tools/ld.musl-clang.in [new file with mode: 0644]
tools/musl-clang.in [new file with mode: 0644]