We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 323924b commit 0d04d50Copy full SHA for 0d04d50
Makefile
@@ -5,8 +5,7 @@ UPX = upx
5
REMOVE = del
6
7
STD = c++17
8
-LINK = -static \
9
- -I include/stdc_implemented \
+LINK = -I include/stdc_implemented \
10
-I src/ast \
11
-I src/data_type \
12
-I src/vm \
@@ -62,6 +61,7 @@ release:
62
61
-o bin/stamon.exe \
63
-O2 \
64
-std=$(STD) \
+ -static \
65
$(LINK)
66
67
$(STRIP) -s bin/stamon.exe
@@ -74,6 +74,7 @@ release_win:
74
75
76
77
78
79
80
@@ -86,6 +87,7 @@ release_linux:
86
87
-o bin/stamon \
88
89
90
91
92
93
$(STRIP) -s bin/stamon
0 commit comments