Not indicated package "check" #3684
-
|
I have installed gcc and check with brew, but gcc can't find headers file check.h check gcc-12 doctor config Example of error: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
The safest way is to include the Many formulae (like But some formulae are "keg-only", i.e. they're not linked into the main Homebrew hierarchy on installation. If |
Beta Was this translation helpful? Give feedback.
The safest way is to include the
checkinclude directory in your compilation:Many formulae (like
check) are also linked into the main Homebrew hierarchy, so including the main Homebrew include directory also works in the general case:But some formulae are "keg-only", i.e. they're not linked into the main Homebrew hierarchy on installation. If
brew info <formula>says it's keg-only, you'll need to use the first formulation above.