Hello, can i compile binary file .bc in my cpp program? now i use following code:<div><br><div><div>if (system("opt a.out.bc -std-compile-opts -disable-inlining -loop-deletion -loop-extract -loop-extract-single -loop-rotate -loop-index-split -loop-unroll -opt-phis -loop-unswitch -loop-reduce -o test.bc") == -1) {</div>
<div><span class="Apple-tab-span" style="white-space:pre">      </span>Error("Don't install LLVM!");</div></div><div><span class="Apple-tab-span" style="white-space:pre">      </span>exit(1);</div><div>}</div><div><br>
</div><div>if (system("llvmc test.bc -o test.out") != -1) {...}</div><div>if (system("ldd test.out") == -1) {...}</div><div><br></div><div>and what keys using in clang with flag -O3?</div><div>With respect Andrei.</div>
</div>