Closed issue by Melchizedek6809 on void-packages repository https://github.com/void-linux/void-packages/issues/34570 Description: ### System * xuname: *Void 5.15.7_1 x86_64-musl AuthenticAMD uptodate rF * package: *chicken-5.3.0_1 ### Expected behavior An executable image of the program ### Actual behavior Trying to compile a hello world program with `csc` returns the following error: ``` test.c:8:10: fatal error: chicken.h: No such file or directory 8 | #include "chicken.h" | ^~~~~~~~~~~ compilation terminated. Error: shell command terminated with non-zero exit status 256: 'gcc' 'test.c' -o 'test.o' -c -fno-strict-aliasing -fwrapv -DHAVE_CHICKEN_CONFIG_H -DC_ENABLE_PTABLES -Os -fomit-frame-pointer -I/usr/include/chicken ``` ### Steps to reproduce the behavior The above error message was produced when trying to compile the following scheme program: ``` (display "Test\n") (exit 0) ``` Running it via `csi test.scm` works just as expected, but when trying to compile it via `csc test.scm` I get the above error. I also tested the same program on another system running Debian and there it produced a working binary to make sure it's not something related to the source or my invocation of csc.