Page 1 of 1

Does CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB exist for -s3

Posted: Thu Jun 27, 2024 4:57 pm
by srjasz
I would like to try CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB but I don't find it in sdkconfig. I found its companion CONFIG_COMPILER_FLOAT_LIB_FROM_GCCLIB.

Thanks

Re: Does CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB exist for -s3

Posted: Thu Jun 27, 2024 7:08 pm
by MicroController
RVfplib is for doing floating points on RISC-V CPUs without an FPU. The ESP32-S3 on the other hand is an Xtensa CPU with an FPU, so no use for RISC-V floating point emulation..

Re: Does CONFIG_COMPILER_FLOAT_LIB_FROM_RVFPLIB exist for -s3

Posted: Thu Jun 27, 2024 8:35 pm
by srjasz
Ok, thanks