Detailed explanation of the functions of -I (uppercase i), -L (uppercase l), and -l (lowercase l) when compiling programs with g++ under Linux

Detailed explanation of the functions of -I (uppercase i), -L (uppercase l), and -l (lowercase l) when compiling programs with g++ under Linux

As an entry-level Linux user, I have used simple gcc/g++ operations many times, but sometimes libraries are used for slightly more complex programs. When I encountered a problem, I looked up a lot of information summarized by my predecessors, and left a script hoping it would be helpful to my friends. I'd be very happy if I could solve your problem too, hehe.
For example: libz.so

g++ -o compress compress.cpp -I/home/include/ -L/lib/ -lz

(1) -I (uppercase i)

The compiler searches for header files in the path specified by -I.

-I/home/include/ means that -I/home/include/ directory is used as the first directory to search for header files. The search order is:

/home/include/ -->/usr/include -->/usr/local/include

(2) -L (uppercase l)

It means: the compiler searches for the library file in the path specified by -L. Generally, you can use -l to specify multiple library files at once after -L.

-L/lib/ means to search for library files in the /lib/ directory

(3) -l (lowercase l)

It means: the compiler searches the system default path. If it cannot find the library, it searches the current directory. If it cannot find the library in the current directory, it searches the path set to the top of the environment variables such as LD_LIBRARY_PATH . If it still cannot find the library, the compiler prompts that it cannot find the library.

This example uses the gunzip library, the library file name is libz.so, and the library name is z. It is easy to see that removing the first lib and the last .so of the library file name gives you the library name.

Summarize

This is the end of this article about the detailed explanation of the functions of -I (uppercase i), -L (uppercase l) and -l (lowercase l) when compiling g++ programs under Linux. For more relevant content about Linux g++ compiler programs, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • How to use g++ to compile cpp project under linux
  • Summary of using g++ to compile C++ in Linux environment
  • Methods of compiling and using static and dynamic libraries with g++ under Linux
  • How to compile GDAL dynamic library with g++ in Linux environment
  • Detailed explanation of the basic use of Linux C++ compiler g++

<<:  Calling Baidu Map to obtain longitude and latitude in Vue

>>:  Optimization of data tables in MySQL database, analysis of foreign keys and usage of three paradigms

Recommend

How to use anti-shake and throttling in Vue

Table of contents Preface concept Stabilization d...

Sample code for CSS image animation effects (photo frame)

This article introduces the sample code of CSS pi...

The implementation process of long pressing to identify QR code in WeChat applet

Preface We all know that the QR codes in official...

Share MySql8.0.19 installation pit record

The previous article introduced the installation ...

Detailed explanation of the process of modifying Nginx files in centos7 docker

1. Install nginx in docker: It is very simple to ...

Sample code for implementing history in vuex

I have recently been developing a visual operatio...

Install and configure MySQL under Linux

System: Ubuntu 16.04LTS 1\Download mysql-5.7.18-l...

MySQL 8.0.3 RC is about to be released. Let’s take a look at the changes

MySQL 8.0.3 is about to be released. Let’s take a...

MySQL data compression performance comparison details

Table of contents 1. Test environment 1.1 Hardwar...

How to make your browser talk with JavaScript

Table of contents 1. The simplest example 2. Cust...

How to add, delete and modify columns in MySQL database

This article uses an example to describe how to a...

Use Shell scripts to batch start and stop Docker services

Table of contents Start Docker Stop Docker Python...

MySQL 5.7 installation-free configuration graphic tutorial

Mysql is a popular and easy-to-use database softw...

How to install Solr 8.6.2 in Docker and configure the Chinese word segmenter

1. Environment version Docker version 19.03.12 ce...

Detailed explanation of loop usage in javascript examples

I was bored and sorted out some simple exercises ...