Hi, Stanislav.
I made a test function like this.
void floatTestFunc()
{
int a;
float x=1.0f,y=1.0f,z;
z = x* y;
a = (int) z;
}
If I build upper codes with below libraries in Eclipse Codewarrior, there is no error.
- libc_E200z760_VLE. a
- librt_E200z760_VLE. a
But, if I build the codes without libraries, there are some errors like following.
- undefined : '_f_ftoi' Referenced 'from floatTestFunc' in......
- undefined : '_f_mul' Referenced 'from floatTestFunc' in......
But, I can't find related source files in upper folder.
I would like to build with source files regarding floating points.
Thanks.