0

We are having an application which is built using gcc on RHEL 8. When we run the executable for this application on RHEL 6 we are getting error `GLIBC_2.14' not found required by application. What are the options which can make application built on RHEL 8 using gcc run on RHEL 6.

1 Answers1

2

What are the options which can make application built on RHEL 8 using gcc run on RHEL 6.

Running the application in a docker container may be a reasonable option.

You could also install GLIBC-2.14 (or newer) in parallel to the system GLIBC. See this answer.

Employed Russian
  • 199,314
  • 34
  • 295
  • 362