Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-21 Thread BrunoBB
Hi, Finally i remember how i fixed this problem in the past. Just a small description for the record. libgit2.dll fail to load on startup on Pharo 7 on Windows (in this case 8). * Starting Pharo from launcher >> libgit2.dll load FAIL * Starting Pharo from command line >> libgit2.dll load FAIL *

Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-21 Thread BrunoBB
Hi, Reboot the machine usually fixed the problem but not this time. Note: It happen on image startup. regards, bruno -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-20 Thread Ben Coman
On Fri, 20 Dec 2019 at 22:36, BrunoBB wrote: > Hi, > > My problem is in Pharo 7 and also it happend randomly. > > But this time is not going away ... > > My Pharo 7 VM is installed in "C:\Users\Usuario\Documents\Pharo\vms\70-x64" > > If i remember correctly i have read there are some issues when

Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-20 Thread BrunoBB
The following also fail: DynamicLoader loadLibrary: 'C:\Users\Usuario\Documents\Pharo\vms\70-x64\libgit2.dll' -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-20 Thread BrunoBB
Hi, Any idea how to fix this problem ? regards, bruno -- Sent from: http://forum.world.st/Pharo-Smalltalk-Users-f1310670.html

Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-20 Thread BrunoBB
Hi, My problem is in Pharo 7 and also it happend randomly. But this time is not going away ... My Pharo 7 VM is installed in "C:\Users\Usuario\Documents\Pharo\vms\70-x64" If i remember correctly i have read there are some issues when is not installed in the default path. regards, bruno -- S

Re: [Pharo-users] External Module not found - LGitLibrary

2019-12-20 Thread Andrei Chis
Hi, We got a slightly similar error with Pharo 8 on a Linux CI when loading code quite often (but still randomly). Does it happen for you when loading code or just when opening the image? Which Pharo 8.0 build are you using? Error: External module not found ExternalLibraryFunction(Object)>>error

Re: [Pharo-users] External module not found

2018-11-18 Thread Pierce Ng
On Sat, Nov 17, 2018 at 05:38:28PM -0500, Richard Kenneth Eng wrote: > I have a most peculiar problem. I've been using Pierce Ng’s PasswordCrypt > encryption > package with Pharo 5. Now that I'm using Pharo 6, it doesn't seem to work > anymo

Re: [Pharo-users] External module not found

2018-11-18 Thread horrido
All is good now. I replaced my 64-bit Debian with 32-bit Debian. Then, I installed 32-bit Pharo. It's weird that I must run Pharo (which is installed in /home/richard) as root, though. Must be a Debain thing 'cuz it wasn't necessary in Ubuntu. Stephan Eggermont-3 wrote > horrido < > horrido.ho

Re: [Pharo-users] External module not found

2018-11-17 Thread Stephan Eggermont
horrido wrote: > That's what I'm trying to determine. This used to work before with Pharo 5. > > With the latest Pharo setup, it's not clear where I'm supposed to place the > libshacrypt.so file. It has to be located where the Pharo VM can find it, I > presume. > > This may be a 32 vs 64 bit iss

Re: [Pharo-users] External module not found

2018-11-17 Thread horrido
That's what I'm trying to determine. This used to work before with Pharo 5. With the latest Pharo setup, it's not clear where I'm supposed to place the libshacrypt.so file. It has to be located where the Pharo VM can find it, I presume. This may be a 32 vs 64 bit issue. I am investigating... v

Re: [Pharo-users] External module not found

2018-11-17 Thread Bernardo Ezequiel Contreras
i've seen that error when i forgot to put a link to sqlite3 (libsqlite3.so) near the VM. are you sure that the VM have access to the external library? On Sat, Nov 17, 2018 at 7:39 PM Richard Kenneth Eng < horrido.hobb...@gmail.com> wrote: > I have a most peculiar problem. I've been using Pierce