diff options
author | EuAndreh <eu@euandre.org> | 2024-01-02 17:27:38 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2024-01-02 17:27:38 -0300 |
commit | 46ab8cfff358fbccbdeee3a6f211f8dc74e73aac (patch) | |
tree | 18f7f6faad837d02c64cc9a8cb74b3c6c3b07f82 /tools/musl-clang.in | |
parent | Inline "INSTALL" into "README" (diff) | |
download | grovel-46ab8cfff358fbccbdeee3a6f211f8dc74e73aac.tar.gz grovel-46ab8cfff358fbccbdeee3a6f211f8dc74e73aac.tar.xz |
tools/: Remove unused files
Diffstat (limited to 'tools/musl-clang.in')
-rw-r--r-- | tools/musl-clang.in | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/tools/musl-clang.in b/tools/musl-clang.in deleted file mode 100644 index 623de6f6..00000000 --- a/tools/musl-clang.in +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -cc="@CC@" -libc="@PREFIX@" -libc_inc="@INCDIR@" -libc_lib="@LIBDIR@" -thisdir="`cd "$(dirname "$0")"; pwd`" - -# prevent clang from running the linker (and erroring) on no input. -sflags= -eflags= -for x ; do - case "$x" in - -l*) input=1 ;; - *) input= ;; - esac - if test "$input" ; then - sflags="-l-user-start" - eflags="-l-user-end" - break - fi -done - -exec $cc \ - -B"$thisdir" \ - -fuse-ld=musl-clang \ - -static-libgcc \ - -nostdinc \ - --sysroot "$libc" \ - -isystem "$libc_inc" \ - -L-user-start \ - $sflags \ - "$@" \ - $eflags \ - -L"$libc_lib" \ - -L-user-end |