By the way David do you think this is valuable patch for LanguageKit?

On Apr 30, 2011, at 10:18 PM, Mathieu Suen wrote:

> Eventually I found why it was not called:
> 
> ffi_type *_ffi_type_nspoint_elements[] = {
>       &ffi_type_float, &ffi_type_float, NULL
> };
> 
> On osx x86-64 it is not float but double.
> I have change it to:
> 
> #ifdef __i386__
> ffi_type *_ffi_type_nspoint_elements[] = {
>       &ffi_type_float, &ffi_type_float, NULL
> };
> #else
> ffi_type *_ffi_type_nspoint_elements[] = {
>       &ffi_type_double, &ffi_type_double, NULL
> };
> #end
> 
> 
> 
> Mathieu
> 
> _______________________________________________
> Etoile-discuss mailing list
> [email protected]
> https://mail.gna.org/listinfo/etoile-discuss


_______________________________________________
Etoile-discuss mailing list
[email protected]
https://mail.gna.org/listinfo/etoile-discuss

Répondre à