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
While trying to configure coreutils, in the checking whether printf supports POSIX/XSI format strings with positions check, the following assertion is tripped: include/frg/printf.hpp:65: Assertion 'opts->arg_pos <= vsp->num_args' failed!
The code it's trying to execute is as follows:
/* The string "%2$d %1$d", with dollar characters protected from the shell's dollar expansion (possibly an autoconf bug). */staticcharformat[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' };
staticcharbuf[100];
intmain ()
{
sprintf (buf, format, 33, 55);
return (strcmp (buf, "55 33") !=0);
}
The text was updated successfully, but these errors were encountered:
While trying to configure coreutils, in the
checking whether printf supports POSIX/XSI format strings with positions
check, the following assertion is tripped:include/frg/printf.hpp:65: Assertion 'opts->arg_pos <= vsp->num_args' failed!
The code it's trying to execute is as follows:
The text was updated successfully, but these errors were encountered: