prepare (1/3):
finished
make (2/3):
make: Entering directory '/out/build/driver'
clang -std=gnu11 -O2 -o driver driver.c
driver successfully constructed
make: Leaving directory '/out/build/driver'
make: Entering directory '/out/build/mumsh'
clang -std=gnu11 -O2 -Wall -Wextra -pedantic -Wno-unused-result -o mumsh main.c redirect.c read_command.c parse.c execute.c pipe.c internal_cmds.c
In file included from main.c:8:
./read_command.h:38:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from main.c:9:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from main.c:10:
./execute.h:14:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
main.c:18:14: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char command[MAXSIZE];
^~~~~~~
main.c:20:25: warning: unused parameter 'signo' [-Wunused-parameter]
void sigint_handler(int signo) {
^
main.c:47:31: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char oldCommandString[MAXSIZE];
^~~~~~~
6 warnings generated.
In file included from redirect.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
redirect.c:47:15: warning: unused variable 'errorSymbol' [-Wunused-variable]
char* errorSymbol;
^
2 warnings generated.
In file included from read_command.c:8:
./read_command.h:38:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
read_command.c:18:9: warning: implicit declaration of function 'free_jobs' is invalid in C99 [-Wimplicit-function-declaration]
free_jobs(jobs, jobCnt);
^
read_command.c:39:2: warning: no newline at end of file [-Wnewline-eof]
}
^
3 warnings generated.
In file included from parse.c:1:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
parse.c:20:22: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
*parsedCommand = '\0';
^~~~
parse.c:21:2: warning: no newline at end of file [-Wnewline-eof]
}
^
3 warnings generated.
In file included from execute.c:9:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:11:
./read_command.h:38:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:12:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:13:
./execute.h:14:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
execute.c:132:9: warning: unused variable 'tPOs' [-Wunused-variable]
int tPOs = 0;
^
execute.c:68:40: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
if (deleteQuotePos[delPos] == strlen(argument) - 1 + deletedCnt)
~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
execute.c:162:9: warning: unused variable 'roundCnt' [-Wunused-variable]
int roundCnt = 0;
^
execute.c:443:2: warning: no newline at end of file [-Wnewline-eof]
}
^
execute.c:260:9: warning: unused variable 'pos' [-Wunused-variable]
int pos = 0;
^
10 warnings generated.
In file included from pipe.c:1:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from pipe.c:11:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
pipe.c:91:11: warning: unused variable 'pid' [-Wunused-variable]
pid_t pid;
^
3 warnings generated.
In file included from internal_cmds.c:6:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
internal_cmds.c:20:21: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char buffer[MAXPATHLENGTH];
^~~~~~~~~~~~~
internal_cmds.c:33:2: warning: no newline at end of file [-Wnewline-eof]
}
^
3 warnings generated.
clang -std=gnu11 -O2 -Wall -Wextra -pedantic -Wno-unused-result -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fsanitize=integer -o mumsh_memory_check main.c redirect.c read_command.c parse.c execute.c pipe.c internal_cmds.c
In file included from main.c:8:
./read_command.h:38:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from main.c:9:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from main.c:10:
./execute.h:14:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
main.c:18:14: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char command[MAXSIZE];
^~~~~~~
main.c:20:25: warning: unused parameter 'signo' [-Wunused-parameter]
void sigint_handler(int signo) {
^
main.c:47:31: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char oldCommandString[MAXSIZE];
^~~~~~~
6 warnings generated.
In file included from redirect.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
redirect.c:47:15: warning: unused variable 'errorSymbol' [-Wunused-variable]
char* errorSymbol;
^
2 warnings generated.
In file included from read_command.c:8:
./read_command.h:38:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
read_command.c:18:9: warning: implicit declaration of function 'free_jobs' is invalid in C99 [-Wimplicit-function-declaration]
free_jobs(jobs, jobCnt);
^
read_command.c:39:2: warning: no newline at end of file [-Wnewline-eof]
}
^
3 warnings generated.
In file included from parse.c:1:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
parse.c:20:22: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
*parsedCommand = '\0';
^~~~
parse.c:21:2: warning: no newline at end of file [-Wnewline-eof]
}
^
3 warnings generated.
In file included from execute.c:9:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:10:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:11:
./read_command.h:38:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:12:
./parse.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from execute.c:13:
./execute.h:14:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
execute.c:132:9: warning: unused variable 'tPOs' [-Wunused-variable]
int tPOs = 0;
^
execute.c:68:40: warning: comparison of integers of different signs: 'int' and 'unsigned long' [-Wsign-compare]
if (deleteQuotePos[delPos] == strlen(argument) - 1 + deletedCnt)
~~~~~~~~~~~~~~~~~~~~~~ ^ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
execute.c:162:9: warning: unused variable 'roundCnt' [-Wunused-variable]
int roundCnt = 0;
^
execute.c:443:2: warning: no newline at end of file [-Wnewline-eof]
}
^
execute.c:260:9: warning: unused variable 'pos' [-Wunused-variable]
int pos = 0;
^
10 warnings generated.
In file included from pipe.c:1:
./pipe.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
In file included from pipe.c:11:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
pipe.c:91:11: warning: unused variable 'pid' [-Wunused-variable]
pid_t pid;
^
3 warnings generated.
In file included from internal_cmds.c:6:
./internal_cmds.h:8:7: warning: no newline at end of file [-Wnewline-eof]
#endif
^
internal_cmds.c:20:21: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char buffer[MAXPATHLENGTH];
^~~~~~~~~~~~~
internal_cmds.c:33:2: warning: no newline at end of file [-Wnewline-eof]
}
^
3 warnings generated.
mumsh successfully constructed
make: Leaving directory '/out/build/mumsh'
finished
clean (3/3):
finished
all tasks finished, build successfully