You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Due to clashing definitions with 10.4's /usr/include/inttypes.h we were using the wrong PRI*64 macros for the libgcc included with gcc 4.8, which caused some printfs to fail. This caused a very hard to diagnose failure in JavaScript code coverage, among other places. This is now corrected in mfbt/IntegerPrintfMacros.h but we need to check that this is actually being used rather than the now defective macro in the original <inttypes.h>.
Due to clashing definitions with 10.4's
/usr/include/inttypes.h
we were using the wrongPRI*64
macros for thelibgcc
included withgcc
4.8, which caused someprintf
s to fail. This caused a very hard to diagnose failure in JavaScript code coverage, among other places. This is now corrected inmfbt/IntegerPrintfMacros.h
but we need to check that this is actually being used rather than the now defective macro in the original<inttypes.h>
.Here's a set of candidates for
PRIu64
:The text was updated successfully, but these errors were encountered: