Home > Article > Backend Development > Here are a few title options, keeping in mind the question-and-answer format and the content of the article: **Short & Direct:** * **OpenSSL 1.0.0 on Ubuntu 10.04: Why Can\'t I Find the Header F
When trying to build code that utilizes OpenSSL 1.0.0 on Ubuntu 10.04 LTS, encountering errors related to missing header files is a common issue. Despite having the basic openssl package installed, the C library is not included.
To address this, you must install the development package, which provides the необходимой library and headers:
sudo apt-get install libssl-dev
After installing libssl-dev, the header files should be available, and the build should succeed.
Note: The standard system directories searched by the linker for libraries include:
The above is the detailed content of Here are a few title options, keeping in mind the question-and-answer format and the content of the article: **Short & Direct:** * **OpenSSL 1.0.0 on Ubuntu 10.04: Why Can\'t I Find the Header F. For more information, please follow other related articles on the PHP Chinese website!