aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/docs/html/configopts.html
blob: 8be2b14e70466a4817ce3caa74ff4d5306e815a1 (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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
<HEAD>
   <META NAME="AUTHOR" CONTENT="pme@sources.redhat.com (Phil Edwards)">
   <META NAME="KEYWORDS" CONTENT="libstdc++, libstdc++-v3, GCC, g++">
   <META NAME="DESCRIPTION" CONTENT="Configuration options for libstdc++-v3.">
   <META NAME="GENERATOR" CONTENT="vi and eight fingers">
   <TITLE>libstdc++-v3 configure options</TITLE>
<LINK REL=StyleSheet HREF="lib3styles.css">
<!-- $Id: configopts.html,v 1.6.2.4 2001/07/09 19:38:58 pme Exp $ -->
</HEAD>
<BODY>

<H1 CLASS="centered"><A NAME="top">Interesting <TT>configure</TT>
options</A></H1>

<P>The latest version of this document is always available at
   <A HREF="http://gcc.gnu.org/onlinedocs/libstdc++/configopts.html">
   http://gcc.gnu.org/onlinedocs/libstdc++/configopts.html</A>.
</P>

<P>To the <A HREF="http://gcc.gnu.org/libstdc++/">libstdc++-v3 homepage</A>.


<!-- ####################################################### -->
<HR>
<P>Here are some of the non-obvious options to libstdc++'s configure.
   Keep in mind that
   <!-- This SECnn should be the "Choosing Package Options" section. -->
   <A HREF="http://sources.redhat.com/autoconf/autoconf.html#SEC74">they
   all have opposite forms as well</A>
   (enable/disable and with/without).  The defaults are for current
   development sources.
</P>
<P>The canonical way to find out the configure options that are
   available for a given set of libstdc++ sources is to go to the
   source directory and then type:<TT>  ./configure --help</TT>

<DL>
 <DT><TT>--enable-multilib  </TT>[default]
 <DD><P>This is part of the generic multilib support for building cross
        compilers.  As such, targets like &quot;powerpc-elf&quot; will have
        libstdc++ built many different ways:  &quot;-msoft-float&quot;
        and not, etc.  A different libstdc++ will be built for each of
        the different multilib versions.  This option is on by default.
     </P>

 <DT><TT>--enable-debug  </TT>
 <DD><P>The configure script will automatically detect the highest level
        of optimization that the compiler in use can use (certain
        versions of g++ will ICE if given the <TT>-O2</TT> option, but
        this is fixed in later versions of the compiler).  This --enable
        flag will disable all optimizations and instruct the compiler to
        emit as much extra debugging information as it can, for use
        inside GDB.
     </P>

 <DT><TT>--enable-cstdio  </TT>
 <DD><P>This is an abbreviated form of <TT>'--enable-cstdio=stdio'</TT>
        (described next).
     </P>

 <DT><TT>--enable-cstdio=LIB  </TT>
 <DD><P>Select a target-specific I/O package.  As of libstdc++-v3
        snapshot 2.91, the choices are 'libio' to specify the GNU
        I/O package (from
        <A HREF="http://sources.redhat.com/glibc/">glibc</A>, the
        GNU C library), or 'stdio' to use a generic &quot;C&quot;
        abstraction.  The default is 'stdio'.  A longer explanation
        is <A HREF="explanations.html#cstdio">here</A>.
     </P>

 <DT><TT>--enable-sjlj-exceptions  </TT>
 <DD><P>Forces old, set-jump/long-jump exception handling model.  If
        at all possible, the new, frame unwinding exception handling routines
        should be used instead, as they significantly reduce both runtime
        memory usage and executable size.
     </P>

 <DT><TT>--enable-clocale  </TT>
 <DD><P>This is an abbreviated form of <TT>'--enable-clocale=generic'</TT>
        (described next).
     </P>

 <DT><TT>--enable-clocale=MODEL  </TT>
 <DD><P>Select a target-specific underlying locale package.  The choices
        are 'gnu' to specify an X/Open (IEEE Std. 1003.1-200x) model based
        on langinfo/iconv (from
        <A HREF="http://sources.redhat.com/glibc/">glibc</A>, the GNU C
        library), or 'generic' to use a generic &quot;C&quot; abstraction
        which consists of &quot;C&quot; locale info.  The default is 'generic'.
     </P>

 <DT><TT>--enable-c99  </TT>
 <DD><P>The &quot;long long&quot; type was introduced in C99, along
        with bunches of other functions for wide characters, and math
        classification macros, etc.  If enabled, all C99 functions not
        specified by the C++ standard will be put into <TT>namespace
        c99</TT>, and then all names in the c99 namespace will be injected
        into namespace std, so that C99 functions can be used &quot;as
        if&quot; they were in the C++ standard (as they will eventually
        be in some future revision of the standard, without a doubt).
        By default, C99 support is on, assuming the configure probes find
        all the necessary functions and bits necessary.
    </P>

 <DT><TT>--enable-long-long  </TT>
 <DD><P>The &quot;long long&quot; type was introduced in C99.  It is
        provided as a GNU extension to C++98 in g++.  This flag builds
        support for &quot;long long&quot; into the library (specialized
        templates and the like for iostreams).  This option is on by default:
        if enabled, users will have to either use the new-style &quot;C&quot;
        headers by default (i.e., &lt;cmath&gt; not &lt;math.h&gt;)
        or add appropriate compile-time flags to all compile lines to
        allow &quot;C&quot; visibility of this feature (on GNU/Linux,
        the flag is -D_ISOC99_SOURCE, which is added automatically via
        CPLUSPLUS_CPP_SPEC's addition of _GNU_SOURCE).
     </P>

 <DT><TT>--enable-cheaders=OPTION  </TT>
 <DD><P>This allows the user to define what kind of C headers are
        used.  Options are: c, c_std, and c_shadow. These correspond
        to the source directory's include/c, include/c_std, and
        include/c_shadow directories.  The default is c_std.
     </P>

 <DT><TT>--enable-threads  </TT>
 <DD><P>This is an abbreviated form of <TT>'--enable-threads=yes'</TT>
        (described next).
     </P>

 <DT><TT>--enable-threads=LIB  </TT>
 <DD><P>Select a threading library.  As of libstdc++-v3 snapshot 2.91,
        the choices are:
        'yes' for some kind of default (hmmmmm);
        'decosf1', 'irix', 'mach', 'os2', 'posix'/'pthreads'
        (same thing),
        'solaris', 'win32', 'dce', or 'vxworks' to select the
        corresponding interface;
        and 'single', 'no', or 'none' for the null-case,
        single-threaded library.
     </P>
     <P>All of this is currently undergoing a lot of changes.  As of
        2.91, 'single' and 'posix' are the only implemented
        models.  Default is single.
     </P>

 <DT><TT>--enable-version-specific-runtime-libs  </TT>
 <DD><P>Specify that run-time libraries should be installed in the
        compiler-specific subdirectory (i.e.,
        <TT>${libdir}/gcc-lib/${target_alias}/${gcc_version}</TT>)
        instead of <TT>${libdir}</TT>.  This option is useful if you
        intend to use several versions of gcc in parallel.  In addition,
        libstdc++'s include files will be installed in
        <TT>${libdir}/gcc-lib/${target_alias}/${gcc_version}/include/g++</TT>,
        unless you also specify
       <TT>--with-gxx-include-dir=<EM>dirname</EM></TT> during configuration.
     </P>

 <DT><TT>--with-gxx-include-dir=&lt;include-files dir&gt;</TT>
 <DD><P>Adds support for named libstdc++ include directory.  For instance,
        the following puts all the libstdc++ headers into a directory
        called &quot;2.97-20001008&quot; instead of the usual
        &quot;g++-v3&quot;.
        <PRE>
   --with-gxx-include-dir=/foo/H-x86-gcc-3-c-gxx-inc/include/2.97-20001008</PRE>
     </P>

 <DT><TT>--enable-cxx-flags=FLAGS</TT>
 <DD><P>With this option, you can pass a string of -f (functionality)
        flags to the compiler to use when building libstdc++.  FLAGS
        is a quoted string of options, like
        <PRE>
  --enable-cxx-flags='-fvtable-gc -fomit-frame-pointer -ansi'</PRE>
        Note that the flags don't necessarily have to all be -f flags,
        as shown, but usually those are the ones that will make sense
        for experimentation and configure-time overriding.
     </P>
     <P>The advantage of --enable-cxx-flags over setting CXXFLAGS in
        the 'make' environment is that, if files are automatically
        rebuilt, the same flags will be used when compiling those files
        as well, so that everything matches.
     </P>
     <P>Fun flags to try might include combinations of
        <PRE>
  -fstrict-aliasing
  -fno-exceptions
  -ffunction-sections
  -fvtable-gc</PRE>
        and opposite forms (-fno-) of the same.  Tell us (the mailing
        list) if you discover more!
     </P>

 <DT><TT>--enable-c-mbchar  </TT>[default]
 <DD><P>Certain template specializations are required for wide
        character conversion support.  This is tricky and currently
        changing rapidly, and can cause problems on new platforms.
        Disabling wide character specializations is useful for initial
        porting steps, but builds only a subset of what is required by
        ISO.  Default is on, but the <TT>--enable-cstdio=stdio </TT>
        option currently turns it off.
     </P>
</DL>
</P>
<P>Return <A HREF="#top">to the top of the page</A> or
   <A HREF="http://gcc.gnu.org/libstdc++/">to the homepage</A>.
</P>


<!-- ####################################################### -->

<HR>
<P CLASS="fineprint"><EM>
$Id: configopts.html,v 1.6.2.4 2001/07/09 19:38:58 pme Exp $
</EM></P>


</BODY>
</HTML>