We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d43460 commit c682365Copy full SHA for c682365
1 file changed
build.c
@@ -74,7 +74,7 @@ int main(int argc, char **argv) {
74
75
if (!strcmp(argv[1], "examples")) {
76
for (int i = 0; i < sizeof(EXAMPLE_FILES) / sizeof(char *); i++) {
77
- if (run("%s%s examples/%s.cpp %s -o %s%s", CXX, CXXFLAGS, EXAMPLE_FILES[i], LDFLAGS, EXAMPLE_FILES[i], EXEC_SUFFIX)) {
+ if (run("%s %s examples/%s.cpp %s -o %s%s", CXX, CXXFLAGS, EXAMPLE_FILES[i], LDFLAGS, EXAMPLE_FILES[i], EXEC_SUFFIX)) {
78
return -1;
79
}
80
0 commit comments