summaryrefslogtreecommitdiff
path: root/mk/wrapper/transform-ccc-cc
blob: e7e055d2ddcf834feefec26b2a10f679adbbff2f (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
# $NetBSD: transform-ccc-cc,v 1.1 2004/11/20 04:37:08 grant Exp $
#

case $arg in
######################################################################
# Directories for the runtime library search path are passed via
# "-Wl,-rpath,<dir>", not "-Wl,-R<dir>".
######################################################################
-Wl,-R*)
	arg="-Wl,-rpath,${arg#-Wl,-R}"
	msg_log $wrapperlog "   (transform-ccc-cc) to: $arg"
	addtocache=yes
	;;
-W[LlSc],*)
	addtocache=yes
	;;
-W*)
	arg=
	msg_log $wrapperlog "   (transform-ccc-cc) to: $arg"
	addtocache=yes
	;;
-mieee)
	arg="-ieee"
	msg_log $wrapperlog "	(transform-ccc-cc) to: $arg"
	addtocache=yes
	;;
-g)
	arg="-g3"
	msg_log $wrapperlog "   (transform-ccc-cc) to: $arg"
	addtocache=yes
	;;
esac