summaryrefslogtreecommitdiff
path: root/src/engine/SCons/Tool/applelink.xml
blob: 29c8183d3b171aa9682757266745d0884898283f (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!--
Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The SCons Foundation

This file is processed by the bin/SConsDoc.py module.
See its __doc__ string for a discussion of the format.
-->
<tool name="applelink">
<summary>
Sets construction variables for the Apple linker
(similar to the GNU linker).
</summary>
<sets>
FRAMEWORKPATHPREFIX
_FRAMEWORKPATH
_FRAMEWORKS
LINKCOM
SHLINKFLAGS
SHLINKCOM
LDMODULEPREFIX
LDMODULESUFFIX
LDMODULEFLAGS
LDMODULECOM
</sets>
<uses>
FRAMEWORKSFLAGS
</uses>
</tool>

<cvar name="FRAMEWORKSFLAGS">">
<summary>
On Mac OS X with gcc,
general user-supplied frameworks options to be added at
the end of a command
line building a loadable module.
(This has been largely superceded by
the &cv-link-FRAMEWORKPATH;, &cv-link-FRAMEWORKPATHPREFIX;,
&cv-link-FRAMEWORKPREFIX; and &cv-link-FRAMEWORKS; variables
described above.)
</summary>
</cvar>

<cvar name="FRAMEWORKS">
<summary>
On Mac OS X with gcc, a list of the framework names to be linked into a
program or shared library or bundle.
The default value is the empty list.
For example:

<example>
 env.AppendUnique(FRAMEWORKS=Split('System Cocoa SystemConfiguration'))
</example>

</summary>
</cvar>

<cvar name="FRAMEWORKPREFIX">
<summary>
On Mac OS X with gcc,
the prefix to be used for linking in frameworks
(see &cv-link-FRAMEWORKS;).
The default value is
<option>-framework</option>.
</summary>
</cvar>

<cvar name="_FRAMEWORKS">
<summary>
On Mac OS X with gcc,
an automatically-generated construction variable
containing the linker command-line options
for linking with FRAMEWORKS.
</summary>
</cvar>

<cvar name="FRAMEWORKPATH">
<summary>
On Mac OS X with gcc,
a list containing the paths to search for frameworks.
Used by the compiler to find framework-style includes like
#include &lt;Fmwk/Header.h&gt;.
Used by the linker to find user-specified frameworks when linking (see
&cv-link-FRAMEWORKS;).
For example:

<example>
 env.AppendUnique(FRAMEWORKPATH='#myframeworkdir')
</example>

will add

<example>
  ... -Fmyframeworkdir
</example>

to the compiler and linker command lines.
</summary>
</cvar>

<cvar name="FRAMEWORKPATHPREFIX">
<summary>
On Mac OS X with gcc, the prefix to be used for the FRAMEWORKPATH entries.
(see &cv-link-FRAMEWORKPATH;).
The default value is
<option>-F</option>.
</summary>
</cvar>

<cvar name="_FRAMEWORKPATH">
<summary>
On Mac OS X with gcc, an automatically-generated construction variable
containing the linker command-line options corresponding to
&cv-link-FRAMEWORKPATH;.
</summary>
</cvar>