QBE 1.3 (released 2026-06-01) adds Windows AMD64 ABI support (amd64_win target), improved PIC via extern symbol constants, GVN/GCM optimisation passes, if-conversion, and various correctness and performance fixes. All 2293 compiler tests pass against the new QBE binary.
17 lines
186 B
Makefile
17 lines
186 B
Makefile
BIN = mgen
|
|
SRC = \
|
|
match.ml \
|
|
fuzz.ml \
|
|
cgen.ml \
|
|
sexp.ml \
|
|
test.ml \
|
|
main.ml
|
|
|
|
$(BIN): $(SRC)
|
|
ocamlopt -o $(BIN) -g str.cmxa $(SRC)
|
|
|
|
clean:
|
|
rm -f *.cm? *.o $(BIN)
|
|
|
|
.PHONY: clean
|