fuhsnn / slimcc

C11 compiler with GNU / C23 extensions for x86-64 Linux, able to build Python and PostgreSQL
MIT License
24 stars 3 forks source link

`-MMD` wrongly omits files from -I specified directory #57

Closed fuhsnn closed 5 months ago

fuhsnn commented 5 months ago

dir/inc.h m.c

#include "inc.h"
int main(void) {}

run

chibicc -Idir m.c -MMD -MF m.d && cat m.d

got

m.o: \
  m.c

dir/inc.h should be there