Re: [fpc-devel] soft-fpu

2024-07-10 Thread Martin Frb via fpc-devel
On 10/07/2024 23:55, Sven Barth via fpc-devel wrote: The SoftFpu unit is only intended for use by the compiler. If you want to use 80-bit floating point yourself you need to use ufloat80 and sfpux80 (the later wraps the same include files as SoftFpu, but for use by the user). Thanks. Now

Re: [fpc-devel] soft-fpu

2024-07-10 Thread Sven Barth via fpc-devel
Martin Frb via fpc-devel schrieb am Mi., 10. Juli 2024, 19:21: > Any hints on using unit SoftFpu? (or any alternative) > > I have an 80 bit float (from an external source) that needs to be > converted to double. > > But if I do >uses softfpu, ufloatx80 > > then I get >Error: Multiple defi

Re: [fpc-devel] soft-fpu

2024-07-10 Thread Florian Klämpfl via fpc-devel
> Am 10.07.2024 um 19:21 schrieb Martin Frb via fpc-devel > : > > Any hints on using unit SoftFpu? (or any alternative) > > I have an 80 bit float (from an external source) that needs to be converted > to double. > > But if I do > uses softfpu, ufloatx80 > > then I get > Error: Multiple

[fpc-devel] soft-fpu

2024-07-10 Thread Martin Frb via fpc-devel
Any hints on using unit SoftFpu? (or any alternative) I have an 80 bit float (from an external source) that needs to be converted to double. But if I do   uses softfpu, ufloatx80 then I get   Error: Multiple defined symbol "INT32_TO_FLOAT64" and many more...