Click to See Complete Forum and Search --> : Where are the C/C++ libraries?


The Coder
05-16-2004, 07:11 PM
Are they **ALL** in /usr/include or are they also in another place?

maccorin
05-16-2004, 07:16 PM
they are wherever you installed them


find / -type d -name include -print
find / -type f -iregex .*lib.* -print

The Coder
05-16-2004, 07:36 PM
I guess what I am asking is where are they installed by default. I was never asked in my instalation as to their desired location.

maccorin
05-16-2004, 07:42 PM
depends on your distro

why don't you just run those 2 commands?

JCool451
05-17-2004, 03:14 PM
When compiling from source, the default prefix is apparently /usr/local. So if you do the standard making process (./configure; make; make install), then it should install in /usr/local/include. If you're talking about the ones that come with the system, then that does infact depend on the distro.