当前位置: 软件>C/C++软件
C 语言编译器 C4
本文导语: 4个函数实现的c编译器,大约500行。基本上已经比较完备了,可以自己编译自己。 使用方法: gcc -o c4 c4.c (you may need the -m32 option on 64bit machines) ./c4 hello.c ./c4 -s hello.c ./c4 c4.c hello.c ./c4 c4.c c4.c hello.c
4个函数实现的c编译器,大约500行。基本上已经比较完备了,可以自己编译自己。
使用方法:
gcc -o c4 c4.c (you may need the -m32 option on 64bit machines) ./c4 hello.c ./c4 -s hello.c ./c4 c4.c hello.c ./c4 c4.c c4.c hello.c