We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bae60f commit 46b8a85Copy full SHA for 46b8a85
benchmarks/wasm/compare_wasp/Makefile
@@ -0,0 +1,16 @@
1
+.PHONY: all run clean
2
+
3
+all: large-branch.wat.cpp.imm.noreuse.exe large-branch.wat.cpp.imm.exe
4
5
+large-branch.wat.cpp.imm.noreuse.exe: large-branch.wat.cpp
6
+ g++ large-branch.wat.cpp -o large-branch.wat.cpp.imm.noreuse.exe -DUSE_IMM -I ../../../headers -lz3 -DENABLE_PROFILE_TIME -O3 -DNO_REUSE
7
8
+large-branch.wat.cpp.imm.exe: large-branch.wat.cpp
9
+ g++ large-branch.wat.cpp -o large-branch.wat.cpp.imm.exe -DUSE_IMM -I ../../../headers -lz3 -DENABLE_PROFILE_TIME -O3
10
11
+run: all
12
+ ./large-branch.wat.cpp.imm.noreuse.exe
13
+ ./large-branch.wat.cpp.imm.exe
14
15
+clean:
16
+ rm -f *.exe
0 commit comments