Sunday, December 27, 2020

Chapter 25 : Compile and Install Grep - Cross Compiling Temporary Tools

Hi,

In this chapter we are going to discuss on Compiling and Installing Grep Package.

Note :
- Please check the version of the package when you compile and install, at the time of writing the package was at version 3.4
- You should be logged in as lfs user, when you perform the actions described here.
- Change directory to the sources folder (/mnt/lfs/sources)

Unpack the package tarball and change directory.
$ tar -xvf grep-3.4.tar.xz
$ cd grep-3.4

Preparing the package for compilation.
./configure --prefix=/usr   \
            --host=$LFS_TGT \
            --bindir=/bin

Compiling the package
$ make -j4

Installing the package
$ make DESTDIR=$LFS install




No comments:

Post a Comment

Installing Python and Creating Virtual Environment for Pip for package installations in Ubuntu

Hi, In this post we are going to look at how to install Python and PIP and installing packages in virtual environments.. Without wasting...