With an almost standard installation of Ubuntu 11.04, I installed clang.
I am trying to compile this:
#include <cstdlib> int main(){ return 0; }
g ++ can handle this just fine, but clang ++ errors: fatal error: cstdlib file not found
Can someone explain why this is happening? and what needs to be done to make this work? I expected clang ++ to become a replacement for g ++.
source share