Home > Article > Backend Development > How to Fix the "GLIBCXX_3.4.15 Not Found" Error in Ubuntu?
GLIBCXX_3.4.15 Not Found: Resolving the Error in Ubuntu
When attempting to run compiled programs, an error message indicating that "GLIBCXX_3.4.15 not found" can arise. This error is encountered due to the absence of the necessary version of the GLIBCXX library.
Issue Resolution
To resolve this issue, one can install the GLIBCXX_3.4.15 package, which is a dependency for running specific programs. As described in the given solution, the user encountered a separate problem while compiling gcc. In their case, the installation via "sudo make install" did not resolve the issue.
Alternative Solution
The alternative solution involves manually locating the required library file and pointing the operating system to it. In this case, the user identified the library file "libstdc .so.6.0.15" within the gcc source code directory.
Implementation
To implement this solution, follow these steps:
By completing these steps, the issue of GLIBCXX_3.4.15 not being found is resolved, and the compiled programs can function as expected.
The above is the detailed content of How to Fix the "GLIBCXX_3.4.15 Not Found" Error in Ubuntu?. For more information, please follow other related articles on the PHP Chinese website!