MazuCC icon indicating copy to clipboard operation
MazuCC copied to clipboard

A minimalist C compiler with x86_64 code generation

Results 6 MazuCC issues
Sort by recently updated
recently updated
newest added

When wanting to do `#include ` an error appears: ```sh mzcc --dump-ast ./main.c -o ./x lexer.c:209: Unexpected character: '#' ```

Travis-CI is the preferable continuous integration so far.

Function `read_struct_field` should check if `field` is NULL

# 大家好,我用winlib的C编译器在win下编译成功, **但是需要改变makefile文件的编写.** mingw64是默认的, makefile文件改造为如下: ``` # 目标可执行文件 目标 = mzcc # 编译选项 编译选项 = -Wall -Werror -std=gnu99 -g -I. # 对象文件 对象文件 = lexer.o codegen_x64.o parser.o verbose.o main.o #...