Hi, please ignore this question, I have found the answer yet. Thanks anyway.

在2020年11月6日星期五 UTC+8 上午11:56:00<Chen Wang> 写道:

> hello,
> I am building bionic libc with tag 10.0.0_r39
> in file bionic/libc/bionic/strtold.cpp, I see following codes:
>
> extern "C" int __strtorQ(const char*, char**, int, void*);
>
> long double strtold(const char* s, char** end_ptr) {
> #if defined(__LP64__)
>   long double result;
>   __strtorQ(s, end_ptr, FLT_ROUNDS, &result);
>   return result;
> #else
>   // This is fine for LP32 where long double is just double.
>   return strtod(s, end_ptr);
> #endif
> }
>
> I searched sourcecode, but could not find "__strtorQ()". Why the the build 
> can pass?
>
> Thanks in adv.
>
>

-- 
-- 
You received this message because you are subscribed to the "Android Building" 
mailing list.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-building?hl=en

--- 
You received this message because you are subscribed to the Google Groups 
"Android Building" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/android-building/439b5d90-a566-4c51-af7d-f41c3ad877f4n%40googlegroups.com.

Reply via email to