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 -o mumsh main.c
main.c:21:5: warning: implicit declaration of function 'gets' is invalid in C99 [-Wimplicit-function-declaration]
gets(command);
^
main.c:82:15: warning: implicit declaration of function 'wait' is invalid in C99 [-Wimplicit-function-declaration]
int out = wait(NULL);
^
main.c:34:10: warning: unused variable 'empty' [-Wunused-variable]
char empty[] = "";
^
main.c:82:9: warning: unused variable 'out' [-Wunused-variable]
int out = wait(NULL);
^
4 warnings generated.
/tmp/main-7297d5.o: In function `main':
main.c:(.text+0x2e): warning: the `gets' function is dangerous and should not be used.
clang -std=gnu11 -O2 -Wall -fsanitize=address -fno-omit-frame-pointer -fsanitize=undefined -fsanitize=integer -o mumsh_memory_check main.c
main.c:21:5: warning: implicit declaration of function 'gets' is invalid in C99 [-Wimplicit-function-declaration]
gets(command);
^
main.c:82:15: warning: implicit declaration of function 'wait' is invalid in C99 [-Wimplicit-function-declaration]
int out = wait(NULL);
^
main.c:34:10: warning: unused variable 'empty' [-Wunused-variable]
char empty[] = "";
^
main.c:82:9: warning: unused variable 'out' [-Wunused-variable]
int out = wait(NULL);
^
4 warnings generated.
/tmp/main-172240.o: In function `main':
main.c:(.text+0xf0): warning: the `gets' function is dangerous and should not be used.
mumsh successfully constructed
make: Leaving directory '/out/build/mumsh'
finished
clean (3/3):
finished
all tasks finished, build successfully