mailing list of musl libc
 help / color / mirror / code / Atom feed
0afbd4ebdd24c2c23601ab5b1311513153b6fef0 blob 340 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
 
#!/bin/sh
# Run assembler to produce an object file, optionally applying other pre-processing steps
input=$1
output=$2
arch=$3
as=$4

if [ -f "tools/add-cfi.awk.$arch" ]; then
  tmpfile=$(mktemp -t musl-aswrap-XXXXXX)
  awk -f tools/add-cfi.awk.$arch $input >$tmpfile
  mv $tmpfile $tmpfile.s
  input=$tmpfile.s
fi

$as -c -o $output $input
debug log:

solving 0afbd4e ...
found 0afbd4e in https://inbox.vuxu.org/musl/1431516270-24108-1-git-send-email-alexinbeijing@gmail.com/ ||
	https://inbox.vuxu.org/musl/1431539679-4265-1-git-send-email-alexinbeijing@gmail.com/

applying [1/2] https://inbox.vuxu.org/musl/1431516270-24108-1-git-send-email-alexinbeijing@gmail.com/
diff --git a/tools/aswrap.sh b/tools/aswrap.sh
new file mode 100755
index 0000000..0afbd4e

Checking patch tools/aswrap.sh...
Applied patch tools/aswrap.sh cleanly.

skipping https://inbox.vuxu.org/musl/1431539679-4265-1-git-send-email-alexinbeijing@gmail.com/ for 0afbd4e
index at:
100755 0afbd4ebdd24c2c23601ab5b1311513153b6fef0	tools/aswrap.sh

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).