未混淆编译 编写一个最简单的测试代码,对 test_add函数用于对两个数相加: int __attribute((__annotate__("vm"))) test_add(int a, int b) {int c = a + b;return c;}int main(void) {int c = test_add(1, 2);return c;} 编译成中间代码: 未加
参考了官方教程:Getting Started with the LLVM System — LLVM 19.0.0git documentation 首先从github拷贝一份源码,使用了官方推荐的方法: git clone --depth 1 https://github.com/llvm/llvm-project.git 我的系统是ubuntu22,安装过程中需要使用到cmake、ma