Displaying 1 result from an estimated 1 matches for "3512bb0e".
2012 Mar 02
5
[LLVMdev] (Newbie) Using lli with clang++?
Hello all,
I'm brand new to using LLVM and am having trouble using lli with a C++
program. I tried to compile the following:
#include<iostream>
using namespace std;
int main()
{
cout << "Hello, world!" << endl;
return 0;
}
When I compile directly to an executable with the following command, all is
well:
$ clang++ -O3 hello.cpp -o hello
But when I try to produce