Re: [Nix-dev] /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found trying to install on RHEL 6.5

2015-06-29 Thread Alexander Vorobiev
My understanding is rpms for Nix are only available for Fedora and they wouldn't work with RHEL which is very conservative (no c++11 compiler, etc). There is new RHEL 7 released a few months ago but most enterprise users are still on 6.x (or older) with no plans to upgrade. Hence my interest in

Re: [Nix-dev] /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found trying to install on RHEL 6.5

2015-06-26 Thread Tuomas Tynkkynen
On 06/25/2015 11:35 PM, Alex Vorobiev wrote: ... $ bash (curl https://nixos.org/nix/install) ... initialising Nix database... /nix/store/l598bgyrflylmfxr7c889jcs5amflrsp-nix-1.9/bin/nix-store: /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found (required by

Re: [Nix-dev] /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found trying to install on RHEL 6.5

2015-06-26 Thread Eelco Dolstra
Hi, On 26/06/15 12:23, Kirill Elagin wrote: This basically means that Nix expects a different version of libstdc++. Well, the Nix binary tarball includes a copy of libstdc++, so that shouldn't be a problem. It's more likely that (as Tuomas suggested) LD_LIBRARY_PATH is causing a different

Re: [Nix-dev] /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found trying to install on RHEL 6.5

2015-06-26 Thread Kirill Elagin
This basically means that Nix expects a different version of libstdc++. You can use `objdump` or `readelf` on your library to find out which version you have. Your options are upgrading (or downgrading which is less likely) gcc (which provides this library) or building Nix yourself using gcc that

[Nix-dev] /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found trying to install on RHEL 6.5

2015-06-25 Thread Alex Vorobiev
Hi, I am trying to install Nix on RHEL 6.5 in a single user mode. The installation fails when nix-store can't load libstdc++ (see below). Is there any way to fix the problem? Thanks, Alex $ bash (curl https://nixos.org/nix/install) ... initialising Nix database...

Re: [Nix-dev] /usr/lib64/libstdc++.so.6: version `GLIBCXX_3.4.15' not found trying to install on RHEL 6.5

2015-06-25 Thread Joachim Schiele
On 25.06.2015 22:35, Alex Vorobiev wrote: Hi, I am trying to install Nix on RHEL 6.5 in a single user mode. The installation fails when nix-store can't load libstdc++ (see below). Is there any way to fix the problem? Thanks, Alex $ bash (curl https://nixos.org/nix/install) ...