Changeset e050677
- Timestamp:
- 02/19/2019 06:05:57 AM (4 years ago)
- Branches:
- 10.0, 10.0-rc1, 10.1, 10.1-rc1, 11.0, 11.0-rc1, 11.0-rc2, 11.0-rc3, 11.1, 11.1-rc1, 11.2, 11.2-rc1, 11.3, 11.3-rc1, 8.4, 9.0, 9.0-rc1, 9.1, 9.1-rc1, arm, bdubbs/gcc13, cross-chap5, ml-11.0, multilib, old-trunk, s6-init, trunk, xry111/arm64, xry111/clfs-ng, xry111/git-transition, xry111/glibc-2.34, xry111/glibc-2.37, xry111/kcfg-revise, xry111/lfs-next, xry111/pip3, xry111/queue-11.3, xry111/rust-wip-20221008, xry111/tester-nohack, xry111/usr-move
- Children:
- 43eb476
- Parents:
- 1d19f36
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
chapter01/changelog.xml
r1d19f36 re050677 44 44 --> 45 45 <listitem> 46 <para>2019-02-011</para> 46 <para>2019-02-19</para> 47 <itemizedlist> 48 <listitem> 49 <para>[bdubbs] - Add an optional modification to theh build 50 procedure for ninja to allow use the the environment 51 variable NINJAJOBS.</para> 52 </listitem> 53 </itemizedlist> 54 </listitem> 55 56 <listitem> 57 <para>2019-02-14</para> 47 58 <itemizedlist> 48 59 <listitem> … … 59 70 60 71 <listitem> 61 <para>2019-02- 011</para>72 <para>2019-02-11</para> 62 73 <itemizedlist> 63 74 <listitem> -
chapter06/ninja.xml
r1d19f36 re050677 40 40 <sect2 role="installation"> 41 41 <title>Installation of Ninja</title> 42 <!-- 42 43 43 <para>When run, ninja normally runs a maximum number of processes 44 44 in parallel. By default this is the number of cores on the system … … 48 48 embed the execution of ninja and do not pass a -j parameter.</para> 49 49 50 <para>Using the <emphasis>optional</emphasis> p atchbelow allows a user to50 <para>Using the <emphasis>optional</emphasis> procedure below allows a user to 51 51 limit the number of parallel processes via an environment variable, 52 NINJAJOBS. <command>For example</command> setting:52 NINJAJOBS. <command>For example</command>, setting: 53 53 54 <!- -Using <command> here to make the output bold. We really don't want54 <!--Using <command> here to make the output bold. We really don't want 55 55 users setting this now and experience shows that many users blindly 56 copy/paste anything in a box. - 56 copy/paste anything in a box. --> 57 57 58 58 <screen>export NINJAJOBS=4</screen> … … 60 60 will limit ninja to four parallel processes.</para> 61 61 62 <para>If desired, install the patch by running:</para> 62 <para>If desired, add the capability to use the environment variable 63 NINJAJOBS by running:</para> 63 64 64 <screen><userinput remap="pre">patch -Np1 -i ../ninja-1.8.2-add_NINJAJOBS_var-1.patch</userinput></screen> 65 --> 65 <screen><userinput remap="pre">sed -i '/int Guess/a \ 66 int j = 0;\ 67 char* jobs = getenv( "NINJAJOBS" );\ 68 if ( jobs != NULL ) j = atoi( jobs );\ 69 if ( j > 0 ) return j;\ 70 ' src/ninja.cc</userinput></screen> 71 66 72 <para>Build Ninja with:</para> 67 73 -
general.ent
r1d19f36 re050677 1 <!ENTITY version "SVN-2019021 4">1 <!ENTITY version "SVN-20190219"> 2 2 <!ENTITY short-version "svn"> <!-- Used below in &blfs-book; 3 3 Change to x.y for release but not -rc releases --> 4 4 <!ENTITY generic-version "development"> <!-- Use "development" or "x.y[-pre{x}]" --> 5 5 6 <!ENTITY versiond "2019021 4-systemd">6 <!ENTITY versiond "20190219-systemd"> 7 7 <!ENTITY short-versiond "systemd"> 8 8 <!ENTITY generic-versiond "systemd"> 9 9 10 <!ENTITY releasedate "February 1 4, 2019">10 <!ENTITY releasedate "February 19, 2019"> 11 11 12 12 <!ENTITY copyrightdate "1999-2019"><!-- jhalfs needs a literal dash, not – -->
Note:
See TracChangeset
for help on using the changeset viewer.