Skip to content

Commit

Permalink
Set --fatal-warning on assembler
Browse files Browse the repository at this point in the history
  • Loading branch information
fuhsnn committed Dec 24, 2024
1 parent d7df39e commit 56af910
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions main.c
Original file line number Diff line number Diff line change
Expand Up @@ -749,6 +749,7 @@ static void assemble(char *input, char *output) {
strarray_push(&arr, input);
strarray_push(&arr, "-o");
strarray_push(&arr, output);
strarray_push(&arr, "--fatal-warnings");

for (int i = 0; i < as_args.len; i++)
strarray_push(&arr, as_args.data[i]);
Expand Down

0 comments on commit 56af910

Please sign in to comment.