LLVM之clang
参考网站:LLVM系统入门1 编写一个c文件#include<stdio.h>int test(int a,int b){ int c=a+b; return c;}int main(){ test(1,2); return 0;}2 编译为本机可执行文件obfuscator-llvm-4.0/build/bin/clang hello.c -o hello3 编译c文件可以得到两种格式的IR(1) 将c文件编译为 LLVM bitcode文件obfusc
翻译
2021-03-08 11:12:50 ·
605 阅读 ·
0 评论