Ignore:
Timestamp:
06/26/2019 04:18:28 AM (5 years ago)
Author:
DJ Lucas <dj@…>
Branches:
elogind
Children:
b72ee6a
Parents:
284586c
Message:

Merge to HEAD 21727.

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/branches/BOOK-elogind@21729 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • general/prog/gcc.xml

    r284586c r25e9ce9  
    3333      The <application>GCC</application> package contains the GNU Compiler
    3434      Collection. This page describes the installation of compilers for the
    35       following languages: C, C++, Fortran, Objective C, Objective C++, and Go.
     35      following languages: C, C++, D, Fortran, Objective C, Objective C++, and Go.
    3636      <!--One additional language, Ada, is available in the collection. It has
    3737      a binary bootstrap requirement for the first installation, so it is
     
    188188esac
    189189
    190 mkdir build                                          &amp;&amp;
    191 cd    build                                          &amp;&amp;
    192 
    193 ../configure                                         \
    194     --prefix=/usr                                    \
    195     --disable-multilib                               \
    196     --disable-libmpx                                 \
    197     --with-system-zlib                               \
    198     --enable-languages=c,c++,fortran,go,objc,obj-c++ &amp;&amp;
     190mkdir build                                            &amp;&amp;
     191cd    build                                            &amp;&amp;
     192
     193../configure                                           \
     194    --prefix=/usr                                      \
     195    --disable-multilib                                 \
     196    --disable-libmpx                                   \
     197    --with-system-zlib                                 \
     198    --enable-languages=c,c++,d,fortran,go,objc,obj-c++ &amp;&amp;
    199199make</userinput></screen>
    200200
     
    275275
    276276    <para>
    277       <parameter>--enable-languages=c,c++,fortran,go,objc,obj-c++</parameter>:
     277      <parameter>--enable-languages=c,c++,d,fortran,go,objc,obj-c++</parameter>:
    278278      This command identifies which languages to build. You may modify
    279279      this command to remove undesired languages. Two other languages can be
     
    349349      <seglistitem>
    350350        <seg>
    351           gccgo, go, gofmt, and gfortran, hard-linked to architecture specific
    352           names
     351          gccgo, go, gofmt, gdc and gfortran, hard-linked to architecture
     352          specific names
    353353        </seg>
    354354        <seg>
    355355          libgfortran.{so,a},
     356          libgdruntime.{so,a}, libgphobos.{so,a}
    356357          libgo.{so,a}, libgobegin.a, libgolibbegin.a,
    357358          libobjc.{so,a}, and numerous other run-time libraries and executables
     
    405406      </varlistentry>
    406407
     408      <varlistentry id="gdc">
     409        <term><command>gdc</command></term>
     410        <listitem>
     411          <para>
     412            is a GCC-based compiler for the <application>D</application>
     413            language.
     414          </para>
     415          <indexterm zone="gcc gdc">
     416            <primary sortas="b-gdc">gdc</primary>
     417          </indexterm>
     418        </listitem>
     419      </varlistentry>
     420
    407421      <varlistentry id="gfortran">
    408422        <term><command>gfortran</command></term>
Note: See TracChangeset for help on using the changeset viewer.