gcc gave me this error:
cc1obj: error: type '<built-in>' does not have a known size
without any line number to give a clue what was going on. The error turned out to be having an objective-C method with an argument type of(void)
, a typo that should have been(void *)
.