[Pharo-dev] Pharo RPi and FileSystem error

2014-04-30 Thread jannik laval
Hi all, I have an error on Pharo 3, with RPi. The error is UnixResolverCan't find the request origin To reproduce it, just run this line: --- FileLocator home exists Thank you for your help. -- ~~Jannik Laval~~ École des Mines de Douai Enseignant-chercheur http://www.jannik-laval.eu

Re: [Pharo-dev] Pharo RPi and FileSystem error

2014-04-30 Thread David T. Lewis
There are no NativeBoost on Rpi, FFI or OSProcess. Basically the fileSystem work, but some data are fetch via env variable and then NativeBoost. The solution is to bypass all the request of env variable. You should use another way until, we finish to integrate a way to request correctly the

Re: [Pharo-dev] Pharo RPi and FileSystem error

2014-04-30 Thread Douglas McPherson
As a data point, OSProcess works out-of-the-box with the Squeak interpreter VM shipped with Raspbian. So should be ok in Pharo, but I haven't tried it. Doug On Apr 30, 2014, at 09:03 , David T. Lewis wrote: There are no NativeBoost on Rpi, FFI or OSProcess. Basically the fileSystem work,

Re: [Pharo-dev] Pharo RPi and FileSystem error

2014-04-30 Thread Sven Van Caekenberghe
I thought that we did that already: OSEnvironment class#isAvailable NativeBoost class#isAvailable PlatformIndependentEnvironment No ? Are you using the latest 3.0 ? On 30 Apr 2014, at 18:49, Jean Baptiste Arnaud jbaptiste.arn...@gmail.com wrote: That the point I want to checks it, run

Re: [Pharo-dev] Pharo RPi and FileSystem error

2014-04-30 Thread jannik laval
Thank you guys, I will try to find something that does not break Phratch. Cheers, Jannik 2014-04-30 19:43 GMT+02:00 Sven Van Caekenberghe s...@stfx.eu: I thought that we did that already: OSEnvironment class#isAvailable NativeBoost class#isAvailable PlatformIndependentEnvironment No

Re: [Pharo-dev] Pharo RPi and FileSystem error

2014-04-30 Thread Jean Baptiste Arnaud
On rasp there a re no native boost and no OSProcess for now but OSProcess seems work well on my own Jenkins job. After few test I will send a pull request. Here is a OSProcess added version of the rasp VM