Changeset 18a65e61
- Timestamp:
- 08/18/2018 08:23:33 AM (6 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 12.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gimp3, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, lazarus, lxqt, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, upgradedb, xry111/for-12.3, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/spidermonkey128, xry111/test-20220226, xry111/xf86-video-removal
- Children:
- 97828bc
- Parents:
- 796bc663
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
general.ent
r796bc663 r18a65e61 1 1 <!-- $LastChangedBy$ $Date$ --> 2 2 3 <!ENTITY day "1 7"> <!-- Always 2 digits -->3 <!ENTITY day "18"> <!-- Always 2 digits --> 4 4 <!ENTITY month "08"> <!-- Always 2 digits --> 5 5 <!ENTITY year "2018"> … … 7 7 <!ENTITY copyholder "The BLFS Development Team"> 8 8 <!ENTITY version "&year;-&month;-&day;"> 9 <!ENTITY releasedate "August 1 7th, &year;">9 <!ENTITY releasedate "August 18th, &year;"> 10 10 <!ENTITY pubdate "&year;-&month;-&day;"> <!-- metadata req. by TLDP --> 11 11 <!ENTITY blfs-version "svn"> <!-- svn|[release #] --> -
general/prog/cmake.xml
r796bc663 r18a65e61 7 7 <!ENTITY cmake-download-http "https://cmake.org/files/v&cmake-major-version;/cmake-&cmake-version;.tar.gz"> 8 8 <!ENTITY cmake-download-ftp " "> 9 <!ENTITY cmake-md5sum " ab4aa7df9301c94cdd6f8ee4fe66458b">9 <!ENTITY cmake-md5sum "10109246a51102bfda45ff3935275fbf"> 10 10 <!ENTITY cmake-size "7.7 MB"> 11 11 <!ENTITY cmake-buildsize "400 MB (add 416 MB for tests)"> -
general/prog/llvm.xml
r796bc663 r18a65e61 8 8 <!ENTITY llvm-download-http "http://llvm.org/releases/&llvm-version;/llvm-&llvm-version;.src.tar.xz"> 9 9 <!ENTITY llvm-download-ftp " "> 10 <!ENTITY llvm-md5sum " 788a11a35fa62eb008019b37187d09d2">11 <!ENTITY llvm-size "24 MB">12 <!ENTITY llvm-buildsize "2. 4GB (with Clang, add 10.8 GB for tests)">13 <!ENTITY llvm-time "2 4 SBU (with Clang and parallelism=4, add 16SBU for tests)">10 <!ENTITY llvm-md5sum "c88c98709300ce2c285391f387fecce0"> 11 <!ENTITY llvm-size "24.1 MB"> 12 <!ENTITY llvm-buildsize "2.8 GB (with Clang, add 10.8 GB for tests)"> 13 <!ENTITY llvm-time "29 SBU (with Clang and parallelism=4, add 10 SBU for tests)"> 14 14 15 15 <!ENTITY clang-download-http "http://llvm.org/releases/&llvm-version;/cfe-&llvm-version;.src.tar.xz"> 16 <!ENTITY clang-md5sum " 121b3896cb0c7765d690acc5d9495d24">17 <!ENTITY clang-size "1 2MB">16 <!ENTITY clang-md5sum "4e419bd4e3b55aa06d872320f754bd85"> 17 <!ENTITY clang-size "11.3 MB"> 18 18 19 19 <!ENTITY rt-version "&llvm-version;"> 20 20 <!ENTITY compiler-rt-download-http "http://llvm.org/releases/&rt-version;/compiler-rt-&rt-version;.src.tar.xz"> 21 <!ENTITY compiler-rt-md5sum " ba6368e894b5528e527d86a69d8533c6">21 <!ENTITY compiler-rt-md5sum "99bf8bcb68ba96dda74f6aee6c55f639"> 22 22 <!ENTITY compiler-rt-size "1.6 MB"> 23 23 ]> … … 201 201 -DLLVM_LINK_LLVM_DYLIB=ON \ 202 202 -DLLVM_TARGETS_TO_BUILD="host;AMDGPU" \ 203 -Wno-dev .. && 204 make</userinput></screen> 205 206 <para> 207 If you have installed <application>Sphinx</application> and wish 208 to generate the html documentation and manual pages, issue the 209 following commands: 210 </para> 211 <screen><userinput>cmake -DLLVM_ENABLE_SPHINX=ON \ 212 -DSPHINX_WARNINGS_AS_ERRORS=OFF \ 213 -Wno-dev .. && 214 make docs-llvm-html docs-llvm-man</userinput></screen> 215 <para> 216 If you have downloaded the optional packages, the clang documentation 217 can be built too: 218 </para> 219 <screen><userinput>make docs-clang-html docs-clang-man</userinput></screen> 220 <para> 221 To test the results, issue: <command>make check-all</command>. Tests are 203 -DLLVM_BUILD_TESTS=ON \ 204 -Wno-dev -G Ninja .. && 205 ninja</userinput></screen> 206 207 <para> 208 To test the results, issue: <command>ninja check-all</command>. Tests are 222 209 built with a single thread, but run using the maximum number of 223 210 processors/threads available. … … 230 217 </para> 231 218 232 <screen role="root"><userinput>make install</userinput></screen> 233 234 <para> 235 If you have built the documentation, install it by running the 236 following command as the <systemitem class="username">root</systemitem> 237 user: 219 <screen role="root"><userinput>ninja install</userinput></screen> 220 221 <para> 222 If you have installed <application>Sphinx</application> and wish 223 to generate the html documentation and manual pages, double check 224 that you are still in the <filename class="directory">build</filename> 225 directory and issue the following commands: 226 </para> 227 <screen><userinput>rm -rf ./* 228 cmake -DLLVM_ENABLE_SPHINX=ON \ 229 -DSPHINX_WARNINGS_AS_ERRORS=OFF \ 230 -Wno-dev .. && 231 make docs-llvm-html docs-llvm-man</userinput></screen> 232 <para> 233 If you have downloaded the optional packages, the clang documentation 234 can be built too: 235 </para> 236 <screen><userinput>make docs-clang-html docs-clang-man</userinput></screen> 237 238 <para> 239 Install the llvm documentation by running the following command as the 240 <systemitem class="username">root</systemitem> user: 238 241 </para> 239 242 -
introduction/welcome/changelog.xml
r796bc663 r18a65e61 42 42 </listitem> 43 43 --> 44 <listitem> 45 <para>August 16th, 2018</para> 46 <itemizedlist> 47 <listitem> 48 <para>[thomas] - Update to cmake-3.12.1. Fixes 49 <ulink url="&blfs-ticket-root;11001">#11001</ulink>.</para> 50 </listitem> 51 <listitem> 52 <para>[thomas] - Update to llvm-6.0.1. Fixes 53 <ulink url="&blfs-ticket-root;10897">#10897</ulink>.</para> 54 </listitem> 55 </itemizedlist> 56 </listitem> 57 44 58 <listitem> 45 59 <para>August 17th, 2018</para> -
packages.ent
r796bc663 r18a65e61 308 308 <!ENTITY clisp-version "2.49"> 309 309 <!ENTITY cmake-major-version "3.12"> 310 <!ENTITY cmake-minor-version " 0">310 <!ENTITY cmake-minor-version "1"> 311 311 <!ENTITY cmake-version "&cmake-major-version;.&cmake-minor-version;"> 312 312 <!--<!ENTITY cvs-version "1.11.23">--> … … 323 323 <!ENTITY guile-version "2.2.4"> 324 324 <!ENTITY librep-version "0.92.7"> 325 <!ENTITY llvm-version "6.0. 0">325 <!ENTITY llvm-version "6.0.1"> 326 326 <!ENTITY llvm-old-version "3.9.1"> 327 327 <!ENTITY lua-version "5.3.5">
Note:
See TracChangeset
for help on using the changeset viewer.