Open main menu

CDOT Wiki β

Changes

SPO600 Code Building Lab

60 bytes added, 09:44, 1 November 2023
no edit summary
[[Category:SPO600 Labs- Retired]]{{Admon/lab|Purpose of this Lab|In this lab, you will do a baseline build of a software package.}}
== Lab 2 ==
# Download the source code for the software. (Do not install with dnf/yum!)
# Build the software. You may need to install build dependencies (e.g., compilers, tools, and libraries); you can do this (and only this) as the root user using dnf/yum. For example, if you need <code>cmake</code>, run the command <code>sudo dnf install cmake</code>, and if you need the library <code>ncurses</code>, then run the command <code>sudo dnf install ncurses-devel</code> (the <code>-devel</code> specification will cause dnf to install the header files as well as the library, so that you can build software that uses that library).
# Without installing the new software that you just build built (because that could override the existing and working version), test that it works.
# Blog your results. Explain (don't just document) each of the steps required to build your software and any dependencies you need to install. Include your reflections on the process.
{{Admon/tip|Read the glibc Instructions|The glibc software and build system are complex, since this is core library which underlies most of the software on the system. [https://www.gnu.org/software/libc/ Read the documentation carefully.]}}
# Find and build the source code for the latest released version of the GNU Standard C Library (glibc)-- see the instructions at https://sourceware.org/glibc/wiki/Testing/Builds. Note that glibc uses two parallel directory trees: one which contains the source code, and one which contains configuration and the output of the build system. You can safely delete all of the contents of the build directory and rebuild at any time.
# Test the library which you have built (Critical: do this without installing it on your system and overwriting your existing glibc installation!). Prove that your version of the library is used in your tests by introducing a change in behaviour (for example, a small bug).
# There are multiple implementations of a functionsome of the glibc functions: a basic version, written in C, and one or more versions optimized for the various target architecturearchitectures, in C or assembler (.s or .S files). Learn the mechanisms used to override one implementation with another. Read -- read up on the override and multiarch system(don't just google "override" and "multiarch", because these have different meanings in different contexts! Research how those terms specifically apply to glibc).# Blog about the process, your results, your observations, and what you learned.# Obtain the source code for Explain what glibc via git using the instructions at https://sourceware.org/glibc/wiki/Testing/Builds# Build is and test your version of glibc. '''Do Not''' install why it into the system directories or you may destroy the existing Linux installation!# Blog about your resultsis important. Provide convincing proof that the version you can test tested is the specific version of glibc which you buildbuilt. Explain the override and multiarch mechanisms.