Skip to content

Commit

Permalink
Fixing preprocessor edge case preventing building with meson https://…
Browse files Browse the repository at this point in the history
  • Loading branch information
checkroom committed Nov 20, 2024
1 parent cff8143 commit ef7e844
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tccelf.c
Original file line number Diff line number Diff line change
Expand Up @@ -3020,7 +3020,7 @@ LIBTCCAPI int tcc_output_file(TCCState *s, const char *filename)
return elf_output_obj(s, filename);
#ifdef TCC_TARGET_PE
return pe_output_file(s, filename);
#elif TCC_TARGET_MACHO
#elif defined TCC_TARGET_MACHO
return macho_output_file(s, filename);
#else
return elf_output_file(s, filename);
Expand Down

0 comments on commit ef7e844

Please sign in to comment.