GUIDINGLI opened a new pull request #1757: URL: https://github.com/apache/incubator-nuttx/pull/1757
Modify reason: When build Nuttx SIM, in x86_64 system: Compile with gcc option '-m64' (default): sizeof(double_t) = 8 sizeof(double) = 8 Compile with gcc option '-mx32': sizeof(double_t) = 8 sizeof(double) = 8 Compile with gcc option '-m32': sizeof(double_t) = 12 // long double sizeof(double) = 8 When use '-m32', and print sth. like this: printf("%f\n", (double)3.0); SIM will print out: nan This is because sizeof(double_t) is not equal with double. Resolve: replace all double_t to double in libs/libc/stdio. As a user of '-m32', you should know double_t is one type long double, and len is 12. And you use use '%lf' to print. like: printf("%lf\n", (double_t)3.0); Currently we don't support '%lf'. Change-Id: I9b9d11853140d5296dd80416c8ed6a260a9d2d9c Signed-off-by: ligd <liguidi...@xiaomi.com> ## Summary ## Impact ## Testing ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org