Changeset d755bc7 for BOOK/cross-tools
- Timestamp:
- Nov 24, 2012, 2:30:29 AM (12 years ago)
- Branches:
- clfs-2.1, clfs-3.0.0-systemd, clfs-3.0.0-sysvinit, master, systemd, sysvinit
- Children:
- 3265eed
- Parents:
- 7a7f255
- Location:
- BOOK/cross-tools
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
BOOK/cross-tools/64/gcc-static.xml
r7a7f255 rd755bc7 98 98 xpointer="xpointer(//*[@os='aq'])"/> 99 99 100 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 101 href="../common/gcc-static.xml" 102 xpointer="xpointer(//*[@os='ar'])"/> 103 100 104 </sect2> 101 105 -
BOOK/cross-tools/common/binutils-32.xml
r7a7f255 rd755bc7 103 103 104 104 <varlistentry os="bd6"> 105 <term><parameter>--enable-shared</parameter></term>106 <listitem>107 <para>Enable the creation of the shared libraries.</para>108 </listitem>109 </varlistentry>110 111 <varlistentry os="bd7">112 105 <term><parameter>--disable-multilib</parameter></term> 113 106 <listitem> -
BOOK/cross-tools/common/binutils.xml
r7a7f255 rd755bc7 103 103 104 104 <varlistentry os="bd6"> 105 <term><parameter>--enable-shared</parameter></term>106 <listitem>107 <para>Enable the creation of the shared libraries.</para>108 </listitem>109 </varlistentry>110 111 <varlistentry os="bd7">112 105 <term><parameter>--disable-multilib</parameter></term> 113 106 <listitem> … … 117 110 </varlistentry> 118 111 119 <varlistentry os="bd 8">112 <varlistentry os="bd7"> 120 113 <term><parameter>--enable-64-bit-bfd</parameter></term> 121 114 <listitem> -
BOOK/cross-tools/common/gcc-static.xml
r7a7f255 rd755bc7 77 77 78 78 <variablelist os="am"> 79 <title>The meaning of the configure options:</title> 80 81 <varlistentry> 82 <term><parameter>--prefix=/cross-tools</parameter></term> 83 <listitem> 84 <para>This tells the configure script to prepare to install the 85 package in the <filename class="directory">/cross-tools</filename> 86 directory.</para> 87 </listitem> 88 </varlistentry> 89 90 <varlistentry> 91 <term><parameter>--host=${CLFS_HOST}</parameter></term> 92 <listitem> 93 <para>When used with --target, this creates a cross-architecture 94 executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para> 95 </listitem> 96 </varlistentry> 97 98 <varlistentry> 99 <term><parameter>--target=${CLFS_TARGET}</parameter></term> 100 <listitem> 101 <para>When used with --host, this creates a cross-architecture 102 executable that creates files for ${CLFS_TARGET} but runs on ${CLFS_HOST}.</para> 103 </listitem> 104 </varlistentry> 79 <title>The meaning of the new configure options:</title> 105 80 106 81 <varlistentry> 107 82 <term><parameter>--with-sysroot=${CLFS}</parameter></term> 108 83 <listitem> 109 <para>Tells GCC to con cider ${CLFS} as the root file system.</para>84 <para>Tells GCC to consider ${CLFS} as the root file system.</para> 110 85 </listitem> 111 86 </varlistentry> … … 127 102 <para>This disables internationalization as i18n is not needed for the 128 103 cross-compile tools.</para> 129 </listitem>130 </varlistentry>131 132 <varlistentry>133 <term><parameter>--disable-shared</parameter></term>134 <listitem>135 <para>Disables the creation of the shared libraries.</para>136 104 </listitem> 137 105 </varlistentry> … … 202 170 <screen os="ao"><userinput>make all-gcc all-target-libgcc</userinput></screen> 203 171 204 <para os="ap">Install the package:</para> 172 <variablelist os="ap"> 173 <title>The meaning of the new make options:</title> 205 174 206 <screen os="aq"><userinput>make install-gcc install-target-libgcc</userinput></screen> 175 <varlistentry> 176 <term><parameter>all-gcc all-target-libgcc</parameter></term> 177 <listitem> 178 <para>Compiles only the parts of GCC that are needed at this time, 179 rather than the full package.</para> 180 </listitem> 181 </varlistentry> 182 183 </variablelist> 184 185 <para os="aq">Install the package:</para> 186 187 <screen os="ar"><userinput>make install-gcc install-target-libgcc</userinput></screen> 207 188 208 189 </sect2> -
BOOK/cross-tools/common/gmp.xml
r7a7f255 rd755bc7 38 38 --prefix=/cross-tools --enable-cxx --disable-static</userinput></screen> 39 39 40 <variablelist os="b1"> 41 <title>The meaning of the new configure options:</title> 42 43 <varlistentry> 44 <term><parameter>CPPFLAGS=-fexceptions</parameter></term> 45 <listitem> 46 <para>.</para> 47 </listitem> 48 </varlistentry> 49 50 <varlistentry> 51 <term><parameter>--enable-cxx</parameter></term> 52 <listitem> 53 <para>This tells GMP to enable C++ support.</para> 54 </listitem> 55 </varlistentry> 56 57 </variablelist> 58 40 59 <para os="c">Compile the package:</para> 41 60 -
BOOK/cross-tools/common/mpfr.xml
r7a7f255 rd755bc7 29 29 --enable-shared --disable-static --with-gmp=/cross-tools</userinput></screen> 30 30 31 <variablelist os="b1"> 32 <title>The meaning of the new configure options:</title> 33 34 <varlistentry> 35 <term><parameter>LDFLAGS="-Wl,-rpath,/cross-tools/lib"</parameter></term> 36 <listitem> 37 <para>This tells <command>configure</command> to search in 38 <filename class="directory">/cross-tools</filename> for libraries.</para> 39 </listitem> 40 </varlistentry> 41 42 <varlistentry> 43 <term><parameter>--with-gmp=/cross-tools</parameter></term> 44 <listitem> 45 <para>This tells <command>configure</command> where to find GMP.</para> 46 </listitem> 47 </varlistentry> 48 49 </variablelist> 50 31 51 <para os="c">Compile the package:</para> 32 52 -
BOOK/cross-tools/common/ppl.xml
r7a7f255 rd755bc7 31 31 --with-gmp=/cross-tools</userinput></screen> 32 32 33 <variablelist os="b1"> 34 <title>The meaning of the new configure option:</title> 35 36 <varlistentry> 37 <term><parameter>--enable-interfaces="c,cxx"</parameter></term> 38 <listitem> 39 <para>Tells <command>configure</command> to enable support for both 40 C and C++.</para> 41 </listitem> 42 </varlistentry> 43 44 </variablelist> 45 33 46 <para os="c">Compile the package:</para> 34 47 -
BOOK/cross-tools/mips/gcc-static.xml
r7a7f255 rd755bc7 105 105 xpointer="xpointer(//*[@os='aq'])"/> 106 106 107 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 108 href="../common/gcc-static.xml" 109 xpointer="xpointer(//*[@os='ar'])"/> 110 107 111 </sect2> 108 112 -
BOOK/cross-tools/mips64-64/gcc-static.xml
r7a7f255 rd755bc7 115 115 xpointer="xpointer(//*[@os='aq'])"/> 116 116 117 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 118 href="../common/gcc-static.xml" 119 xpointer="xpointer(//*[@os='ar'])"/> 120 117 121 </sect2> 118 122 -
BOOK/cross-tools/mips64/gcc-static.xml
r7a7f255 rd755bc7 108 108 xpointer="xpointer(//*[@os='aq'])"/> 109 109 110 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 111 href="../common/gcc-static.xml" 112 xpointer="xpointer(//*[@os='ar'])"/> 113 110 114 </sect2> 111 115 -
BOOK/cross-tools/multilib/binutils.xml
r7a7f255 rd755bc7 83 83 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 84 84 href="../common/binutils.xml" 85 xpointer="xpointer(//*[@os='bd 8'])"/>85 xpointer="xpointer(//*[@os='bd7'])"/> 86 86 87 87 </variablelist> -
BOOK/cross-tools/multilib/gcc-static.xml
r7a7f255 rd755bc7 106 106 xpointer="xpointer(//*[@os='aq'])"/> 107 107 108 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 109 href="../common/gcc-static.xml" 110 xpointer="xpointer(//*[@os='ar'])"/> 111 108 112 </sect2> 109 113 -
BOOK/cross-tools/ppc/gcc-static.xml
r7a7f255 rd755bc7 100 100 xpointer="xpointer(//*[@os='aq'])"/> 101 101 102 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 103 href="../common/gcc-static.xml" 104 xpointer="xpointer(//*[@os='ar'])"/> 105 102 106 </sect2> 103 107 -
BOOK/cross-tools/ppc64/gcc-static.xml
r7a7f255 rd755bc7 100 100 xpointer="xpointer(//*[@os='aq'])"/> 101 101 102 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 103 href="../common/gcc-static.xml" 104 xpointer="xpointer(//*[@os='ar'])"/> 105 102 106 </sect2> 103 107 -
BOOK/cross-tools/sparc64-64/gcc-static.xml
r7a7f255 rd755bc7 84 84 xpointer="xpointer(//*[@os='aq'])"/> 85 85 86 <xi:include xmlns:xi="http://www.w3.org/2001/XInclude" 87 href="../common/gcc-static.xml" 88 xpointer="xpointer(//*[@os='ar'])"/> 89 86 90 </sect2> 87 91
Note:
See TracChangeset
for help on using the changeset viewer.