ScriptLoader loadFFI doesn't work anymore

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
6 messages Options
Reply | Threaded
Open this post in threaded view
|

ScriptLoader loadFFI doesn't work anymore

Yanni Chiu
"ScriptLoader loadFFI" now fails because the package FFI-Examples is no
longer in the repository.

Does ScriptLoader need to be updated, or was the package deleted
accidentally?

--
Yanni


Reply | Threaded
Open this post in threaded view
|

Re: ScriptLoader loadFFI doesn't work anymore

Yanni Chiu
Oops, this was on Pharo. I just checked Squeak3.11-9371-alpha.zip, and
ScriptLoader>>loadFFI does not exist there.

Anyhow, what is the proper way to load FFI?


Yanni Chiu wrote:
> "ScriptLoader loadFFI" now fails because the package FFI-Examples is no
> longer in the repository.
>
> Does ScriptLoader need to be updated, or was the package deleted
> accidentally?
>


Reply | Threaded
Open this post in threaded view
|

Re: ScriptLoader loadFFI doesn't work anymore

Edgar J. De Cleene



On 2/14/10 4:45 AM, "Yanni Chiu" <[hidden email]> wrote:

> Oops, this was on Pharo. I just checked Squeak3.11-9371-alpha.zip, and
> ScriptLoader>>loadFFI does not exist there.
>
> Anyhow, what is the proper way to load FFI?

FileIn the attached
Go Ladrillos and select
FFI-Kernel-ar.7

This maybe is old, but works.
And do not use ScriptLoader, was useful for 3.10 and older but now you
should use Monticello and MonticelloConfigurations.

Edgar




AgregaRepoLadrillos.st (252 bytes) Download Attachment
Reply | Threaded
Open this post in threaded view
|

Re: ScriptLoader loadFFI doesn't work anymore

Andreas.Raab
In reply to this post by Yanni Chiu
Yanni Chiu wrote:
> "ScriptLoader loadFFI" now fails because the package FFI-Examples is no
> longer in the repository.
>
> Does ScriptLoader need to be updated, or was the package deleted
> accidentally?

ScriptLoader needs to be updated.

Cheers,
   - Andreas


Reply | Threaded
Open this post in threaded view
|

Re: ScriptLoader loadFFI doesn't work anymore

Andreas.Raab
In reply to this post by Yanni Chiu
Yanni Chiu wrote:
> Oops, this was on Pharo. I just checked Squeak3.11-9371-alpha.zip, and
> ScriptLoader>>loadFFI does not exist there.
>
> Anyhow, what is the proper way to load FFI?

(Installer repository: 'http://source.squeak.org/FFI')
        install: 'FFI-Pools';
        install: 'FFI-Kernel';
        install: 'FFI-Win32';
        install: 'FFI-MacOS';
        install: 'FFI-Unix';
yourself.

Cheers,
   - Andreas

> Yanni Chiu wrote:
>> "ScriptLoader loadFFI" now fails because the package FFI-Examples is
>> no longer in the repository.
>>
>> Does ScriptLoader need to be updated, or was the package deleted
>> accidentally?
>>
>
>
>


Reply | Threaded
Open this post in threaded view
|

Re: ScriptLoader loadFFI doesn't work anymore

keith1y

On 14 Feb 2010, at 19:00, Andreas Raab wrote:

Yanni Chiu wrote:
Oops, this was on Pharo. I just checked Squeak3.11-9371-alpha.zip, and ScriptLoader>>loadFFI does not exist there.
Anyhow, what is the proper way to load FFI?

(Installer repository: 'http://source.squeak.org/FFI')
install: 'FFI-Pools';
install: 'FFI-Kernel';
install: 'FFI-Win32';
install: 'FFI-MacOS';
install: 'FFI-Unix';
yourself.

Cheers,
 - Andreas


I suggest that you could add this script to InstallerScripts

Keith