-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cl.exe and clang-cl have no ssize_t #326
Comments
Do we know what types we should use here? |
It also seems like it's standard and has existed for a while so it might just need some flags |
Ah, it's POSIX standard, not C standard. |
Apparently it should be |
I think that |
I've always seen just |
For isize? Seems like a potential hazard and a potential ABI mismatch |
oh I didn't see this was for signed. |
@makotokato do you need an icu_capi patch release with these changes? |
icu_capi patch in unicode-org/icu4x#3401 |
When integrating ICU4X with Firefox, Window build cannot compile icu_capi (try build log is https://treeherder.mozilla.org/logviewer?job_id=413380887&repo=try&lineNumber=19287)
When looking diplomat code, runtime.h uses
ssize_t
. But cl.exe (and clang-cl.exe) doesn't havessize_t
. Could you useifdef
or something workaround?If I am something wrong, let me know.
The text was updated successfully, but these errors were encountered: