diff options
| author | Alasdair Armstrong | 2018-12-11 19:54:14 +0000 |
|---|---|---|
| committer | Alasdair Armstrong | 2018-12-11 19:54:57 +0000 |
| commit | ab4b9ca4f7cab45b6a2a13d0ef125dcf9c276a06 (patch) | |
| tree | 509443d368b072e31c2fe3472641282750629e28 /riscv/Makefile | |
| parent | c0500a16891e57b2856e47a3c233cd0c1d247a70 (diff) | |
Fix all tests with type checking changes
Diffstat (limited to 'riscv/Makefile')
| -rw-r--r-- | riscv/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/riscv/Makefile b/riscv/Makefile index ae86adbe..82b838b9 100644 --- a/riscv/Makefile +++ b/riscv/Makefile @@ -64,13 +64,13 @@ coverage: _sbuild/coverage.native mkdir coverage && bisect-ppx-report -html coverage/ -I _sbuild/ bisect/bisect*.out riscv.c: $(SAIL_SRCS) main.sail Makefile - $(SAIL) -O -memo_z3 -c -c_include riscv_prelude.h -c_include riscv_platform.h $(SAIL_SRCS) main.sail 1> $@ + $(SAIL) $(SAIL_FLAGS) -O -memo_z3 -c -c_include riscv_prelude.h -c_include riscv_platform.h $(SAIL_SRCS) main.sail 1> $@ riscv_c: riscv.c $(C_INCS) $(C_SRCS) Makefile gcc $(C_WARNINGS) -O2 riscv.c $(C_SRCS) ../lib/*.c -lgmp -lz -I ../lib -o riscv_c riscv_model.c: $(SAIL_SRCS) main.sail Makefile - $(SAIL) -O -memo_z3 -c -c_include riscv_prelude.h -c_include riscv_platform.h -c_no_main $(SAIL_SRCS) main.sail 1> $@ + $(SAIL) $(SAIL_FLAGS) -O -memo_z3 -c -c_include riscv_prelude.h -c_include riscv_platform.h -c_no_main $(SAIL_SRCS) main.sail 1> $@ riscv_sim: riscv_model.c riscv_sim.c $(C_INCS) $(C_SRCS) $(CPP_SRCS) Makefile gcc -g $(C_WARNINGS) $(C_FLAGS) -O2 riscv_model.c riscv_sim.c $(C_SRCS) ../lib/*.c $(C_LIBS) -o $@ |
