#!/bin/sh [ $# -lt 4 -o -z "$1" -o -z "$2" -o -z "$3" -o -z "$4" ] && { echo "Usage: $0 " exit 1 } cross="$1"; shift ref="$1"; shift pic="$1"; shift dest="$1"; shift SYMBOLS="$(${cross}nm "$ref" | grep -E '........ [TW] ' | awk '$3 {printf "-u%s ", $3}')" set -x ${cross}gcc -nostdlib -nostartfiles -shared -Wl,--gc-sections -o "$dest" $SYMBOLS "$pic" "$@" .org/git/openwrt/upstream' title='openwrt/upstream Git repository'/>
aboutsummaryrefslogtreecommitdiffstats
blob: d30c04839e949ca06942e8a41912fb19a2657305 (plain)
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