Biparite
Biparite

Reputation: 203

Couldn't load FFI package in pharo 3.0 MacOS

I am using monticello's location as "http://source.squeak.org/FFI" and then trying to load FFI package for MacOS. I could load FFI-Pools,FFI-Kernel. But was unable to load FFI-MacOS, It throws error on "getenv" method. Synatx error:'>'expected. I think I am doing something wrong. Could someone direct me to appropriate link?

Thanks

Upvotes: 1

Views: 93

Answers (2)

EstebanLM
EstebanLM

Reputation: 4357

alternatively, you can execute this in your workspace:

Gofer it 
    smalltalkhubUser: 'Pharo' project: 'MetaRepoForPharo30';
    configurationOf: 'FFI';
    loadStable

Upvotes: 2

MartinW
MartinW

Reputation: 5041

In Pharo 3, use the configuration from Configuration Browser:
World Menu > Tools > Configuration Browser, then Install Stable Version.
All tests are green on OSX 10.9.

enter image description here

Upvotes: 2

Related Questions