vle-forge / rvle

R wrapper
GNU General Public License v3.0
1 stars 3 forks source link

symbol length_error unfound when loading rvle on windows #21

Closed rtrepos closed 8 years ago

rtrepos commented 8 years ago

I got the following error when loading rvle (library rvle):

Le point d'entrée de procédure _ZNSt12length_errorD2Ev est introuvable dasn la bibliothèque de liens dynamiques libstdc++-6.dll

vle and gvle work and it has already worked on a similar platform.

rtrepos commented 8 years ago

Note: readRegistry provides the right path c:\vle-1.1.2

quesnel commented 8 years ago

_ZNSt12length_errorD2Ev is an error from std::length_error::~length_errr().

So, perhaps this error is a missing try/catch in the C/C++ RVLE source code?

rtrepos commented 8 years ago

There was a conflict with libstdc++-6.dll provided into c:\windows\system (from 2012) and the one provided by vle (from 2011) By replacing the one on the system it worked.

rtrepos commented 8 years ago

This is the same problem reported into this issue: #8