|
From: Mike M. <mi...@mi...> - 2015-08-20 17:27:46
|
I run configure like so: ../../valgrind-3.10.1/configure --prefix /usr/local And get the following error message: checking the GLIBC_VERSION version... unsupported version 2.21 configure: error: Valgrind requires glibc version 2.2 - 2.19. This there anyway to build with my existing glibc 2.21. It seems like I'm so close. I'm running Ubuntu 15.01. mikem |
|
From: John R. <jr...@bi...> - 2015-08-20 20:07:06
|
> ../../valgrind-3.10.1/configure --prefix /usr/local > > And get the following error message: > > checking the GLIBC_VERSION version... unsupported version 2.21 > > configure: error: Valgrind requires glibc version 2.2 - 2.19. > > This there anyway to build with my existing glibc 2.21. It seems like I’m so close. > > I’m running Ubuntu 15.01. In the top-level file 'configure', find the string "2.19)" [or even "2.20)"] then: just above that line, add a line "2.21)". That will be a quick-and-dirty workaround. Obviously if you have more energy then you can extend the script and its clients by following the example for 2.19 or 2.20. For the truly motivated, then work with configure.ac. |
|
From: Florian K. <fl...@ei...> - 2015-08-20 21:33:54
|
On 20.08.2015 19:12, Mike McLaughlin wrote: > I run configure like so: > > ../../valgrind-3.10.1/configure --prefix /usr/local > > And get the following error message: > > checking the GLIBC_VERSION version... unsupported version 2.21 > configure: error: Valgrind requires glibc version 2.2 - 2.19. > > This there anyway to build with my existing glibc 2.21. It seems like I'm so close. > This has been fixed a while ago in the development version of valgrind and will be in the next release. If you cannot wait that long, check out the code repository. How to do that and how to build valgrind is described here: http://valgrind.org/downloads/repository.html Florian |