Skip to content

Commit c682365

Browse files
authored
added a space between CXX and Flags causing build issue (#1759)
1 parent 0d43460 commit c682365

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

build.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ int main(int argc, char **argv) {
7474

7575
if (!strcmp(argv[1], "examples")) {
7676
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)) {
77+
if (run("%s %s examples/%s.cpp %s -o %s%s", CXX, CXXFLAGS, EXAMPLE_FILES[i], LDFLAGS, EXAMPLE_FILES[i], EXEC_SUFFIX)) {
7878
return -1;
7979
}
8080
}

0 commit comments

Comments
 (0)