I'm trying to compile some code in cygwin in Windows, and it's trying to include <ar.h>. This header exists at /usr/include/ but GCC doesn't see it, it just says
I tested the exact same code on my Mac and it worked fine:ar.h: No such file or directory
Is there something I have to do in GCC or somewhere else to let it know about this header?#include <ar.h>
int main()
{
return 0;
}