Displaying 3 results from an estimated 3 matches for "79kb".
Did you mean:
791b
2020 Jan 06
2
clang interpreter failed to materialize symbols
...char *argv[])
{
std::cout << "Hello World!\n";
return 0;
}
Below are the steps I do to achieve that goal:
1. clang++.exe hello.cpp -S -emit-llvm -o hello.ll (produces hello.ll about 307KB in size)
2. llvm-link.exe hello.ll -o hello.bc (produces the bit-code file about 79KB in size).
3. lli.exe hello.bc (terminates with a segmentation fault). The dump is below.
I understand that some symbols are not loaded (C++ standard library symbols). I am not sure how I can specify the location of those symbols to lli tool (I tried –extra-object option but no effect).
Could so...
2020 Jan 14
4
clang interpreter failed to materialize symbols
...eturn 0;
>
> }
>
> Below are the steps I do to achieve that goal:
>
> 1. clang++.exe hello.cpp -S -emit-llvm -o hello.ll (produces
> hello.ll about 307KB in size)
> 2. llvm-link.exe hello.ll -o hello.bc (produces the bit-code file
> about 79KB in size).
> 3. lli.exe hello.bc (terminates with a segmentation fault). The
> dump is below.
>
>
>
> I understand that some symbols are not loaded (C++ standard
> library symbols). I am not sure how I can specify the location of
> those symbols...
2020 Jan 16
2
clang interpreter failed to materialize symbols
...*argv[])
{
std::cout << "Hello World!\n";
return 0;
}
Below are the steps I do to achieve that goal:
1. clang++.exe hello.cpp -S -emit-llvm -o hello.ll (produces hello.ll about 307KB in size)
2. llvm-link.exe hello.ll -o hello.bc (produces the bit-code file about 79KB in size).
3. lli.exe hello.bc (terminates with a segmentation fault). The dump is below.
I understand that some symbols are not loaded (C++ standard library symbols). I am not sure how I can specify the location of those symbols to lli tool (I tried –extra-object option but no effect).
Could...