source: general/prog/rust.xml@ f45d55c

12.0 12.1 ken/TL2024 ken/tuningfonts lazarus plabs/newcss python3.11 rahul/power-profiles-daemon renodr/vulkan-addition trunk xry111/llvm18 xry111/xf86-video-removal
Last change on this file since f45d55c was 42ddc30, checked in by Xi Ruoyao <xry111@…>, 12 months ago

treewide: Replace "User Notes" with "Editor Notes"

  • Property mode set to 100644
File size: 27.8 KB
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<!DOCTYPE sect1 PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN"
3 "http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd" [
4 <!ENTITY % general-entities SYSTEM "../../general.ent">
5 %general-entities;
6
7 <!ENTITY rust-download-http "https://static.rust-lang.org/dist/rustc-&rust-version;-src.tar.xz">
8 <!ENTITY rust-download-ftp " ">
9 <!ENTITY rust-md5sum "165792a4266021589b2d6061f208755f">
10 <!ENTITY rust-size "134 MB">
11 <!ENTITY rust-buildsize "8.9 GB (289 MB installed); add 6.4 GB if running the tests">
12 <!ENTITY rust-time "6.7 SBU (including download time; add 6.2 SBU for tests, both using parallelism=8)">
13]>
14
15<sect1 id="rust" xreflabel="rustc-&rust-version;">
16 <?dbhtml filename="rust.html"?>
17
18
19 <title>Rustc-&rust-version;</title>
20
21 <indexterm zone="rust">
22 <primary sortas="a-rust">Rust</primary>
23 </indexterm>
24
25 <sect2 role="package">
26 <title>Introduction to Rust</title>
27 <para>
28 The <application>Rust</application> programming language is designed
29 to be a safe, concurrent, practical language.
30 </para>
31
32 <para>
33 This package is updated on a six-weekly release cycle. Because it is
34 such a large and slow package to build, is at the moment only required
35 by a few packages in this book, and particularly because newer versions
36 tend to break older mozilla packages, the BLFS editors take the view that
37 it should only be updated when that is necessary (either to fix problems,
38 or to allow a new version of a package to build).
39 </para>
40
41 <para>
42 As with many other programming languages, rustc (the rust compiler)
43 needs a binary from which to bootstrap. It will download a stage0
44 binary at the start of the build, so you cannot compile it without an
45 Internet connection.
46 </para>
47
48 <note>
49 <para>
50 Although BLFS usually installs in <filename
51 class="directory">/usr</filename>, when you later upgrade to a newer
52 version of <application>rust</application> the old libraries in <filename
53 class="directory">/usr/lib/rustlib</filename> will remain, with various
54 hashes in their names, but will not be usable and will waste space. The
55 editors recommend placing the files in the <filename
56 class="directory">/opt</filename> directory. In particular, if you
57 have reason to rebuild with a modified configuration (e.g. using the
58 shipped LLVM after building with shared LLVM, perhaps to compile crates
59 for architectures which the BLFS LLVM build does not support)
60 it is possible for the install to leave a broken
61 <command>cargo</command> program. In such a situation, either remove
62 the existing installation first, or use a different prefix such as
63 /opt/rustc-&rust-version;-build2.
64 </para>
65
66 <para>
67 If you prefer, you can of course change the prefix to <filename
68 class="directory">/usr</filename>.
69 </para>
70 </note>
71
72 <para>
73 The current <application>rustbuild</application> build-system will use
74 all processors, although it does not scale well and often falls
75 back to just using one core while waiting for a library to compile.
76 However it can be mostly limited to a specified number of processors by
77 a combination of adding the switch <literal>--jobs &lt;N&gt;</literal>
78 (e.g. '--jobs 4' to limit to 4 processors) on each invocation of
79 <command>python3 ./x.py</command> <emphasis>and</emphasis> using an
80 environment variable <envar>CARGO_BUILD_JOBS=&lt;N&gt;</envar>. At the
81 moment this is not effective when some of the rustc tests are run.
82 </para>
83
84 <para>
85 The current version of rust's num_cpus crate now recognizes that cgroups
86 can be used to restrict which processors it is allowed to use. So if your
87 machine lacks DRAM (typically, less than 2GB DRAM per core) that might be
88 an alternative to taking CPUs offline.
89 <phrase revision="sysv">In sysv systems cgroups requires <ulink
90 url="https://sourceforge.net/projects/libcg/">libcgroup</ulink>.</phrase>
91 <phrase revision="systemd">That can be achieved by using
92 <command>systemd-run</command> command with
93 <parameter>-p User=$(whoami)</parameter> and
94 <parameter>-p AllowedCPUs=0-<replaceable>x</replaceable></parameter>
95 (with <replaceable>x</replaceable> replaced with the number of CPU
96 cores you want to use minus one) options.</phrase>
97 </para>
98
99 <para>
100 At the moment <application>Rust</application> does not provide any
101 guarantees of a stable ABI.
102 </para>
103
104 <note>
105 <para>
106 Rustc defaults to building for ALL supported architectures, using a
107 shipped copy of LLVM. In BLFS the build is only for the X86
108 architecture.
109 If you intend to develop rust crates, this build may not be good
110 enough for your purposes.
111 </para>
112 <para>
113 The build times of this version when repeated on the same machine are
114 often reasonably consistent, but as with all compilations using
115 <command>rustc</command> there can be some very slow outliers.
116 </para>
117 </note>
118
119 &lfs113_checked;
120
121 <bridgehead renderas="sect3">Package Information</bridgehead>
122 <itemizedlist spacing="compact">
123 <listitem>
124 <para>
125 Download (HTTP): <ulink url="&rust-download-http;"/>
126 </para>
127 </listitem>
128 <listitem>
129 <para>
130 Download (FTP): <ulink url="&rust-download-ftp;"/>
131 </para>
132 </listitem>
133 <listitem>
134 <para>
135 Download MD5 sum: &rust-md5sum;
136 </para>
137 </listitem>
138 <listitem>
139 <para>
140 Download size: &rust-size;
141 </para>
142 </listitem>
143 <listitem>
144 <para>
145 Estimated disk space required: &rust-buildsize;
146 </para>
147 </listitem>
148 <listitem>
149 <para>
150 Estimated build time: &rust-time;
151 </para>
152 </listitem>
153 </itemizedlist>
154
155<!--<bridgehead renderas="sect3">Additional Downloads</bridgehead>
156 <itemizedlist spacing="compact">
157 <listitem>
158 <para>
159 Required patch:
160 <ulink url="&patch-root;/rustc-&rust-version;-llvm9_fixes-1.patch"/>
161 </para>
162 </listitem>
163 </itemizedlist>-->
164
165 <bridgehead renderas="sect3">Rust Dependencies</bridgehead>
166
167 <bridgehead renderas="sect4">Required</bridgehead>
168 <para role="required">
169 <xref linkend="cmake"/> and
170 <!-- Required for downloading stage 0 binaries.
171 Otherwise it's recommended (if not installed, a vendored copy
172 will be built). -->
173 <xref linkend="curl"/>
174 </para>
175
176 &build-use-internet;
177
178 <bridgehead renderas="sect4">Recommended</bridgehead>
179 <para role="recommended">
180 <xref linkend="libssh2"/> and
181 <xref linkend="llvm"/>
182 (built with -DLLVM_LINK_LLVM_DYLIB=ON so that rust can link to
183 system LLVM instead of building its shipped version)
184 </para>
185
186 <note>
187 <para>
188 If a recommended dependency is not installed, a shipped copy in the
189 Rustc source tarball will be built and used.
190 </para>
191 </note>
192
193 <bridgehead renderas="sect4">Optional</bridgehead>
194 <para role="optional">
195 <xref linkend="gdb"/> (used by the test suite if it is present) and
196 <ulink url='https://libgit2.org/'>libgit2</ulink>
197 </para>
198
199 <para condition="html" role="usernotes">
200 Editor Notes: <ulink url="&blfs-wiki;/rust"/>
201 </para>
202 </sect2>
203
204 <sect2 role="installation">
205 <title>Installation of Rust</title>
206
207 <note>
208 <para>
209 Currently the rust compiler produces SSE2 instructions for 32-bit x86,
210 causing the generated code to be broken on 32-bit systems without a
211 SSE2-capable processor. All x86 processor models released after
212 2004 should be SSE2-capable. Run
213 <command>lscpu | grep sse2</command> as a test. If it outputs
214 anything, your CPU is SSE2-capable and OK. Otherwise you may try
215 to build this package <emphasis>on a SSE2-capable system</emphasis>
216 with the following fix applied:
217 </para>
218
219 <!-- computeroutput used deliberately to stop anyone from copying
220 blindly -->
221<screen role="nodump"><computeroutput>sed 's@pentium4@pentiumpro@' -i \
222 compiler/rustc_target/src/spec/i686_unknown_linux_gnu.rs</computeroutput></screen>
223
224 <para>
225 And copy the resulting
226 <filename class="directory">/opt/rustc-&rust-version;</filename>
227 to the system without SSE2 capability. But this change is still
228 under upstream review and not tested by BLFS editors.
229 </para>
230 </note>
231
232 <para>
233 To install into the
234 <filename class="directory">/opt</filename> directory, remove any
235 existing <filename>/opt/rustc</filename> symlink
236 and create a new directory (i.e. with a different name if trying a
237 modified build of the same version).
238 As the <systemitem class="username">root</systemitem>
239 user:
240 </para>
241
242<screen role="root"><userinput>mkdir -pv /opt/rustc-&rust-version; &amp;&amp;
243ln -svfn rustc-&rust-version; /opt/rustc</userinput></screen>
244
245 <note>
246 <para>
247 If multiple versions of <application>Rust</application> are installed
248 in <filename class="directory">/opt</filename>, changing to another
249 version only requires changing the <filename> /opt/rustc</filename>
250 symbolic link and then running <command>ldconfig</command>.
251 </para>
252 </note>
253
254 <para>
255 Create a suitable <filename>config.toml</filename> file which will
256 configure the build.
257 </para>
258
259<screen><userinput>cat &lt;&lt; EOF &gt; config.toml
260<literal># see config.toml.example for more possible options
261# See the 8.4 book for an old example using shipped LLVM
262# e.g. if not installing clang, or using a version before 13.0
263
264# tell x.py to not keep printing an annoying warning
265changelog-seen = 2
266
267[llvm]
268# by default, rust will build for a myriad of architectures
269targets = "X86"
270
271# When using system llvm prefer shared libraries
272link-shared = true
273
274[build]
275# omit docs to save time and space (default is to build them)
276docs = false
277
278# install extended tools: cargo, clippy, etc
279extended = true
280
281# Do not query new versions of dependencies online.
282locked-deps = true
283
284# Specify which extended tools (those from the default install).
285tools = ["cargo", "clippy", "rustdoc", "rustfmt"]
286
287# Use the source code shipped in the tarball for the dependencies.
288# The combination of this and the "locked-deps" entry avoids downloading
289# many crates from Internet, and makes the Rustc build more stable.
290vendor = true
291
292[install]
293prefix = "/opt/rustc-&rust-version;"
294docdir = "share/doc/rustc-&rust-version;"
295
296[rust]
297channel = "stable"
298description = "for BLFS &version;"
299
300# BLFS used to not install the FileCheck executable from llvm,
301# so disabled codegen tests. The assembly tests rely on FileCheck
302# and cannot easily be disabled, so those will anyway fail if
303# FileCheck has not been installed.
304#codegen-tests = false
305
306[target.x86_64-unknown-linux-gnu]
307# NB the output of llvm-config (i.e. help options) may be
308# dumped to the screen when config.toml is parsed.
309llvm-config = "/usr/bin/llvm-config"
310
311[target.i686-unknown-linux-gnu]
312# NB the output of llvm-config (i.e. help options) may be
313# dumped to the screen when config.toml is parsed.
314llvm-config = "/usr/bin/llvm-config"
315
316</literal>
317EOF</userinput></screen>
318
319<!--<para>
320 Adapt rustc to allow it to build and function with the changes in LLVM-9:
321 </para>
322
323<screen><userinput remap="pre">patch -Np1 -i ../rustc-&rust-version;-llvm9_fixes-1.patch</userinput></screen>-->
324
325 <para>
326 Compile <application>Rust</application> by running the following
327 commands:
328 </para>
329
330<!-- fixed in 1.58.0, retain as a reminder that fixed crates can be used
331<screen><userinput>sed -i -e '/^curl /s/0.4.38/0.4.40/' \
332 -e '/^curl-sys /s/0.4.48/0.4.50/' \
333 src/tools/cargo/Cargo.toml &amp;&amp; -->
334
335<screen><userinput>{ [ ! -e /usr/include/libssh2.h ] ||
336 export LIBSSH2_SYS_USE_PKG_CONFIG=1; } &amp;&amp;
337python3 ./x.py build</userinput></screen>
338
339 <note>
340 <para>
341 The test suite will generate some messages in the
342 <phrase revision="sysv">system log</phrase>
343 <phrase revision="systemd">systemd journal</phrase>
344 for traps on invalid opcodes, and for segmentation faults.
345 In themselves these are nothing to worry about, just a way for the
346 test to be terminated.
347 </para>
348 </note>
349
350 <para>
351 To run the tests (again using all available CPUs) issue:
352 </para>
353
354<screen remap="test"><userinput>SSL_CERT_DIR=/etc/ssl/certs \
355python3 ./x.py test --verbose --no-fail-fast | tee rustc-testlog</userinput></screen>
356
357 <!-- https://github.com/rust-lang/rust/issues/112209 -->
358 <para>
359 Three <literal>ui</literal> tests may fail (depending on the length
360 of absolute path of the
361 <filename class='directory'>rustc-&rust-version;-src</filename>
362 directory).
363 </para>
364
365 <para>
366 If <command>FileCheck</command> from <application>LLVM</application> has
367 not been installed, all 47 tests from the <quote>assembly</quote> suite
368 will fail.
369 </para>
370
371 <para>
372 As with all large test suites, other tests might fail on some machines -
373 if the number of additional failures is low,
374 check the log for 'failures:' and review lines above that, particularly the
375 'stderr:' lines. Any mention of
376 SIGSEGV or signal 11 in a failing test is a cause for concern.
377 </para>
378
379 <para>
380 If you get any <emphasis>other</emphasis> failing test which reports an
381 issue number then you should search for that issue. For example, when
382 rustc &gt;= 1.41.1 was built with a version of sysllvm before 10.0 the test
383 for issue 69225 failed <ulink
384 url="https://github.com/rust-lang/rust/issues/69225"/> and that should be
385 regarded as a critical failure (they released 1.41.1 because of it).
386 Most other failures will not be critical.
387 </para>
388
389 <para>
390 Therefore, you should determine the number of failures.
391 </para>
392
393 <para>
394 The number of tests which passed and failed can be found by running:
395 </para>
396
397<!-- split into two lines for narrower screen windows -->
398<screen remap="test"><userinput>grep '^test result:' rustc-testlog |
399 awk '{sum1 += $4; sum2 += $6} END { print sum1 " passed; " sum2 " failed" }'</userinput></screen>
400
401<!-- For rustc-1.70.0, I got: 28494 passed; 14 failed. -bdubbs -->
402
403 <para>
404 The other available fields are $8 for those which were ignored
405 (i.e. skipped), $10 for 'measured' and $12 for 'filtered out' but both
406 those last two are probably zero.
407 </para>
408
409 <para>
410 Now, as the &root; user, install the package:
411 </para>
412
413 <note>
414 <para>
415 If <command>sudo</command> or <command>su</command> is invoked for
416 switching to the &root; user, ensure
417 <envar>LIBSSH2_SYS_USE_PKG_CONFIG</envar> is correctly passed or the
418 following command may completely rebuild this package. For
419 <command>sudo</command>, use the
420 <option>--preserve-env=LIBSSH2_SYS_USE_PKG_CONFIG</option> option.
421 For <command>su</command>, do <emphasis>not</emphasis> use the
422 <option>-</option> or <option>--login</option>.
423 </para>
424 </note>
425
426<screen role='root'><userinput>python3 ./x.py install</userinput></screen>
427
428 <para>
429 Still as the &root; user, symlink a <application>Zsh</application>
430 completion file into the correct location:
431 </para>
432
433<screen role='root'><userinput>install -vdm755 /usr/share/zsh/site-functions &amp;&amp;
434ln -sfv /opt/rustc/share/zsh/site-functions/_cargo \
435 /usr/share/zsh/site-functions</userinput></screen>
436
437 </sect2>
438
439 <sect2 role="commands">
440 <title>Command Explanations</title>
441
442 <para>
443 <command>ln -svfn rustc-&rust-version; /opt/rustc</command>: if this is
444 not the first use of the <filename class="directory">/opt/rustc</filename>
445 symlink, overwrite it by forcing, and use the '-n' flag to avoid getting
446 confusing results from e.g. <command>ls -l</command>.
447 </para>
448
449 <para>
450 <literal>targets = "X86"</literal>: this avoids building all the available
451 linux cross-compilers (AArch64, MIPS, PowerPC, SystemZ, etc). Unfortunately,
452 rust insists on installing source files for these below
453 <filename class="directory">/opt/rustc/lib/src</filename>.
454 </para>
455
456 <para>
457 <literal>extended = true</literal>: this installs several tools
458 (specified by the <literal>tools</literal> entry) alongside
459 <command>rustc</command>.
460 </para>
461
462 <para>
463 <literal>tools = ["cargo", "clippy", "rustdoc", "rustfmt"]</literal>:
464 only build the tools from the 'default' profile in binary command
465 <command>rustup</command> which are recommended for most users.
466 The other tools are unlikely to be useful unless using (old) code
467 analyzers or editing the standard library.
468 </para>
469
470 <para>
471 <literal>channel = "stable"</literal>: this ensures only stable features
472 can be used, the default in <filename>config.toml</filename> is to use
473 development features, which is not appropriate for a released version.
474 </para>
475
476 <!-- comment while using shipped LLVM -->
477 <para>
478 <literal>[target.x86_64-unknown-linux-gnu]</literal>: the syntax of
479 <filename>config.toml</filename> requires an <literal>llvm-config</literal>
480 entry for each target for which system-llvm is to be used. Change the target
481 to <literal>[target.i686-unknown-linux-gnu]</literal> if you are building
482 on 32-bit x86. This whole section may be omitted if you wish to build
483 against the shipped llvm, or do not have clang, but the resulting build will
484 be larger and take longer.
485 </para>
486
487<!--<para>
488 <command>sed -i -e '/^curl /s/0.4.38/0.4.40/' ... </command>: two crates
489 normally downloaded for this release do not correctly initialise
490 <application>curl</application> if using
491 <application>openssl-3.0.0</application>. Upstream has fixed that for a
492 future release, this sed causes the fixed versions to be used.
493 </para>-->
494
495 <!-- https://github.com/alexcrichton/ssh2-rs/issues/173 -->
496 <para>
497 <command>export LIBSSH2_SYS_USE_PKG_CONFIG=1</command>: Allow
498 <command>cargo</command> to link to system libssh2.
499 </para>
500
501<!--<para>
502 <command>export RUSTFLAGS="$RUSTFLAGS -C link-args=-lffi"</command>:
503 This adds a link to libffi to any RUSTFLAGS you may already be passing
504 to the build. On some systems, linking fails to include libffi unless
505 this is used. The reason why this is needed is not clear.
506 2023-01-14 : assumed to be no longer needed, but it is some years
507 since one person reported needing this, keep it commented for the moment.
508 </para>-->
509
510 <!-- https://github.com/alexcrichton/openssl-probe/issues/25 -->
511 <para>
512 <envar>SSL_CERT_DIR=/etc/ssl/certs</envar>: Work around an issue
513 causing test failures with the CA certificate store layout used by
514 <xref linkend='make-ca'/>.
515 </para>
516
517 <para>
518 <parameter>--verbose</parameter>: this switch can sometimes provide more
519 information about a test which fails.
520 </para>
521
522 <para>
523 <parameter>--no-fail-fast</parameter>: this switch ensures that the test suite
524 will not stop at the first error.
525 </para>
526
527 </sect2>
528
529 <sect2 role="configuration">
530 <title>Configuring Rust</title>
531
532 <sect3 id="rustc-config">
533 <title>Configuration Information</title>
534
535 <para>
536 If you installed <application>rustc</application> in
537 <filename class="directory">/opt</filename>, you need to update the
538 following configuration files so that <application>rustc</application>
539 is correctly found by other packages and system processes.
540 </para>
541
542 <para>
543 As the <systemitem class="username">root</systemitem> user, create
544 the <filename>/etc/profile.d/rustc.sh</filename> file:
545 </para>
546
547<screen role="root"><userinput>cat &gt; /etc/profile.d/rustc.sh &lt;&lt; "EOF"
548<literal># Begin /etc/profile.d/rustc.sh
549
550pathprepend /opt/rustc/bin PATH
551
552# Include /opt/rustc/man in the MANPATH variable to access manual pages
553pathappend /opt/rustc/share/man MANPATH
554
555# End /etc/profile.d/rustc.sh</literal>
556EOF</userinput></screen>
557
558 <para>
559 Immediately after installation, update the current PATH
560 for your current shell as a normal user:
561 </para>
562
563<screen><userinput>source /etc/profile.d/rustc.sh</userinput></screen>
564
565 </sect3>
566 </sect2>
567
568
569 <sect2 role="content">
570 <title>Contents</title>
571
572 <segmentedlist>
573 <segtitle>Installed Programs</segtitle>
574 <segtitle>Installed Libraries</segtitle>
575 <segtitle>Installed Directories</segtitle>
576
577 <seglistitem>
578 <seg>
579 cargo-clippy, cargo-fmt, cargo, clippy-driver, rust-gdb,
580 rust-gdbgui, rust-lldb, rustc, rustdoc, and rustfmt
581 </seg>
582 <seg>
583 librustc-driver-&lt;16-byte-hash&gt;.so,
584 libstd-&lt;16-byte-hash&gt;.so, and
585 libtest-&lt;16-byte-hash&gt;.so
586 </seg>
587 <seg>
588 ~/.cargo,
589 /opt/rustc, symbolic link to
590 /opt/rustc-&rust-version;
591 </seg>
592 </seglistitem>
593 </segmentedlist>
594
595 <variablelist>
596 <bridgehead renderas="sect3">Short Descriptions</bridgehead>
597 <?dbfo list-presentation="list"?>
598 <?dbhtml list-presentation="table"?>
599
600 <varlistentry id="cargo-clippy">
601 <term><command>cargo-clippy</command></term>
602 <listitem>
603 <para>
604 provides lint checks for a cargo package
605 </para>
606 <indexterm zone="rust cargo-clippy">
607 <primary sortas="b-cargo-clippy">cargo-clippy</primary>
608 </indexterm>
609 </listitem>
610 </varlistentry>
611
612 <varlistentry id="cargo-fmt">
613 <term><command>cargo-fmt</command></term>
614 <listitem>
615 <para>
616 formats all bin and lib files of the current crate using
617 rustfmt
618 </para>
619 <indexterm zone="rust cargo-fmt">
620 <primary sortas="b-cargo-fmt">cargo-fmt</primary>
621 </indexterm>
622 </listitem>
623 </varlistentry>
624
625<!-- <varlistentry id="cargo-miri">
626 <term><command>cargo-miri</command></term>
627 <listitem>
628 <para>
629 is for use by Miri to interpret bin crates and tests. It is
630 not installed by default.
631 </para>
632 <indexterm zone="rust cargo-miri">
633 <primary sortas="b-cargo-miri">cargo-miri</primary>
634 </indexterm>
635 </listitem>
636 </varlistentry>-->
637
638 <varlistentry id="cargo">
639 <term><command>cargo</command></term>
640 <listitem>
641 <para>
642 is the Package Manager for Rust
643 </para>
644 <indexterm zone="rust cargo">
645 <primary sortas="b-cargo">cargo</primary>
646 </indexterm>
647 </listitem>
648 </varlistentry>
649
650 <varlistentry id="clippy-driver">
651 <term><command>clippy-driver</command></term>
652 <listitem>
653 <para>
654 provides lint checks for Rust
655 </para>
656 <indexterm zone="rust clippy-driver">
657 <primary sortas="b-clippy-driver">clippy-driver</primary>
658 </indexterm>
659 </listitem>
660 </varlistentry>
661
662<!-- <varlistentry id="miri">
663 <term><command>miri</command></term>
664 <listitem>
665 <para>
666 is an interpreter for Rust's mid-level intermediate representation
667 (MIR). It is not installed by default.
668 </para>
669 <indexterm zone="rust miri">
670 <primary sortas="b-miri">miri</primary>
671 </indexterm>
672 </listitem>
673 </varlistentry>
674
675 <varlistentry id="rls">
676 <term><command>rls</command></term>
677 <listitem>
678 <para>
679 is the Rust Language Server. This can run in the background to
680 provide IDEs, editors, and other tools with information about Rust
681 programs
682 </para>
683 <indexterm zone="rust rls">
684 <primary sortas="b-rls">rls</primary>
685 </indexterm>
686 </listitem>
687 </varlistentry>
688
689 <varlistentry id="rust-analyzer">
690 <term><command>rust-analyzer</command></term>
691 <listitem>
692 <para>
693 is an implementation of Language Server Protocol for the Rust
694 programming language.
695 </para>
696 <indexterm zone="rust rust-analyzer">
697 <primary sortas="b-rust-analyzer">rust-analyzer</primary>
698 </indexterm>
699 </listitem>
700 </varlistentry>
701
702 <varlistentry id="rust-demangler">
703 <term><command>rust-demangler</command></term>
704 <listitem>
705 <para>
706 converts a list of Rust mangled symbols into a
707 corresponding list of demangled symbols
708 </para>
709 <indexterm zone="rust rust-demangler">
710 <primary sortas="b-rust-demangler">rust-demangler</primary>
711 </indexterm>
712 </listitem>
713 </varlistentry> -->
714
715 <varlistentry id="rust-gdb">
716 <term><command>rust-gdb</command></term>
717 <listitem>
718 <para>
719 is a wrapper script for gdb, pulling in Python pretty-printing
720 modules installed in
721 <filename class="directory">/opt/rustc-&rust-version;/lib/rustlib/etc</filename>
722 </para>
723 <indexterm zone="rust rust-gdb">
724 <primary sortas="b-rust-gdb">rust-gdb</primary>
725 </indexterm>
726 </listitem>
727 </varlistentry>
728
729 <varlistentry id="rust-gdbgui">
730 <term><command>rust-gdbgui</command></term>
731 <listitem>
732 <para>
733 is a wrapper script for a graphical front end to gdb that runs in a
734 browser
735 </para>
736 <indexterm zone="rust rust-gdbgui">
737 <primary sortas="b-rust-gdbgui">rust-gdbgui</primary>
738 </indexterm>
739 </listitem>
740 </varlistentry>
741
742 <varlistentry id="rust-lldb">
743 <term><command>rust-lldb</command></term>
744 <listitem>
745 <para>
746 is a wrapper script for LLDB (the LLVM debugger)
747 pulling in the Python pretty-printing modules
748 </para>
749 <indexterm zone="rust rust-lldb">
750 <primary sortas="b-rust-lldb">rust=lldb</primary>
751 </indexterm>
752 </listitem>
753 </varlistentry>
754
755 <varlistentry id="rustc">
756 <term><command>rustc</command></term>
757 <listitem>
758 <para>
759 is the rust compiler
760 </para>
761 <indexterm zone="rust rustc">
762 <primary sortas="b-rustc">rustc</primary>
763 </indexterm>
764 </listitem>
765 </varlistentry>
766
767 <varlistentry id="rustdoc">
768 <term><command>rustdoc</command></term>
769 <listitem>
770 <para>
771 generates documentation from rust source code
772 </para>
773 <indexterm zone="rust rustdoc">
774 <primary sortas="b-rustdoc">rustdoc</primary>
775 </indexterm>
776 </listitem>
777 </varlistentry>
778
779 <varlistentry id="rustfmt">
780 <term><command>rustfmt</command></term>
781 <listitem>
782 <para>
783 formats rust code
784 </para>
785 <indexterm zone="rust rustfmt">
786 <primary sortas="b-rustfmt">rustfmt</primary>
787 </indexterm>
788 </listitem>
789 </varlistentry>
790
791 <varlistentry id="libstd">
792 <term><filename class="libraryfile">libstd-&lt;16-byte-hash&gt;.so</filename></term>
793 <listitem>
794 <para>
795 is the Rust Standard Library, the foundation of portable Rust software
796 </para>
797 <indexterm zone="rust libstd">
798 <primary sortas="c-libstd">libstd-&lt;16-byte-hash&gt;.so</primary>
799 </indexterm>
800 </listitem>
801 </varlistentry>
802 </variablelist>
803 </sect2>
804
805</sect1>
Note: See TracBrowser for help on using the repository browser.