Reputation: 351
I am trying to get a list of all of the library files in my Mac OS X's c package, but I don't even know what the name of the package is, or how to get the files once I know the package. Are there any command-line tools that I can use to extract these files?
Upvotes: 1
Views: 5405
Reputation: 222923
Mac OS X does not have a “C” package that I know of. You can list the packages installed on your system with pkgutil --packages
. You can list the files installed by a specific package, such as com.apple.pkg.clang
, with pkgutil --files <name of package>
.
Upvotes: 1