October 2019
Intermediate to advanced
444 pages
10h 37m
English
In this recipe, we are not only building Rust but also C. For this, we need a C compiler toolchain—gcc (https://gcc.gnu.org/) and make: https://www.gnu.org/software/make/manual/make.html, which is a rule-based scripting engine for executing the build.
Check whether the tools are installed by opening a Terminal window (note that the versions should be similar—at least the major release—to avoid any unexpected differences):
$ cc --versioncc (GCC) 9.1.1 20190503 (Red Hat 9.1.1-1)Copyright (C) 2019 Free Software Foundation, Inc.This is free software; see the source for copying conditions. There is NOwarranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.$ make --versionGNU Make 4.2.1Built for x86_64-redhat-linux-gnu ...
Read now
Unlock full access