Comment 5 for bug 1196215

Revision history for this message
Kyle Barlow (kylebarlow) wrote :

After upgrading to 13.10 Saucy today, I am now affected by this bug in clang-3.2 as well. Installing clang-3.3 fixes the issue.

In case this isn't clear from the above bug report, trying to build the simple program below with clang or clang++ will fail because both standard libraries are missing.

#include <stddef.h>
#include <stdarg.h>

int main(void)
{
  return 0;
}