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 utils.c redirect.c
main.c:13:33: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char* read_command(char command[MAXSIZE]);
^~~~~~~
main.c:20:18: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char command[MAXSIZE];
^~~~~~~
main.c:39:33: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char* read_command(char command[MAXSIZE])
^~~~~~~
main.c:74:22: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
*parsedCommand = '\0';
^~~~
4 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 utils.c redirect.c
main.c:13:33: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char* read_command(char command[MAXSIZE]);
^~~~~~~
main.c:20:18: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char command[MAXSIZE];
^~~~~~~
main.c:39:33: warning: variable length array folded to constant array as an extension [-Wgnu-folding-constant]
char* read_command(char command[MAXSIZE])
^~~~~~~
main.c:74:22: warning: expression which evaluates to zero treated as a null pointer constant of type 'char *' [-Wnon-literal-null-conversion]
*parsedCommand = '\0';
^~~~
4 warnings generated.
mumsh successfully constructed
make: Leaving directory '/out/build/mumsh'
finished
clean (3/3):
finished
all tasks finished, build successfully