mailing list of musl libc
 help / color / mirror / code / Atom feed
0018932200ff1d1993000883f63aabc6f519e964 blob 638 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
 
#!/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 \
    -nostdlibinc \
    --sysroot "$libc" \
    -isystem "$libc_inc" \
    -L-user-start \
    $sflags \
    "$@" \
    $eflags \
    -L"$libc_lib" \
    -L-user-end
debug log:

solving 00189322 ...
found 00189322 in https://inbox.vuxu.org/musl/1c2e4eb5294288921677b2b661b77ef38a6cdbd0.1684922612.git.Jens.Gustedt@inria.fr/
found 623de6f6 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 623de6f64f52e55f3ee9a98ddfa777530989a7a7	tools/musl-clang.in

applying [1/1] https://inbox.vuxu.org/musl/1c2e4eb5294288921677b2b661b77ef38a6cdbd0.1684922612.git.Jens.Gustedt@inria.fr/
diff --git a/tools/musl-clang.in b/tools/musl-clang.in
index 623de6f6..00189322 100644

Checking patch tools/musl-clang.in...
Applied patch tools/musl-clang.in cleanly.

index at:
100644 0018932200ff1d1993000883f63aabc6f519e964	tools/musl-clang.in

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).