Welcome to mirror list, hosted at ThFree Co, Russian Federation.

newsym « cygwin « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9a249aaab84c521db265c69cdf47ba370008999 (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
35
36
37
38
39
#!/bin/bash
lib=$1; shift
as=$1; shift
ar=$1; shift
rm -rf newsym.dir
trap "rm -rf newsym.dir" 0 1 2 15
mkdir newsym.dir
while [ -n "$1" ]; do
    newsym=$1; shift
    oldsym=$1; shift
    if [[ "$newsym" = *:d ]]; then
	newsym=${newsym%:d}
    else
	cat <<EOF
	.text
	.global	_$newsym
_$newsym:
	jmp	*__imp__$oldsym
EOF
    fi > newsym.dir/$newsym.s

    cat <<EOF >> newsym.dir/$newsym.s
	.section .idata\$7
	.long	__head_cygwin1_dll

	.section .idata\$5
	.global	__imp__$newsym
__imp__$newsym:	.rva    1f

	.section .idata\$4
	.rva	1f

	.section .idata\$6
1:	.short	2
	.asciz	"$oldsym"
EOF
    $as -o newsym.dir/$newsym.o newsym.dir/$newsym.s
done
$ar crus $lib newsym.dir/*.o