Where is the gcc executable under Linux?
up vote
1
down vote
favorite
I installed gcc 4.7.0 as a new version, but the result of gcc --version
did not change. I learned that I should set a link in /usr/bin/
to the gcc executable. However, under the index of 4.7.0 I installed there are 6 indexes:
bin include lib lib64 libexec share
I am not sure where I can find the gcc executable. Where should the gcc executable be commonly?
Thank you!
linux gcc centos
add a comment |
up vote
1
down vote
favorite
I installed gcc 4.7.0 as a new version, but the result of gcc --version
did not change. I learned that I should set a link in /usr/bin/
to the gcc executable. However, under the index of 4.7.0 I installed there are 6 indexes:
bin include lib lib64 libexec share
I am not sure where I can find the gcc executable. Where should the gcc executable be commonly?
Thank you!
linux gcc centos
Have a try using thefind
utility, read about how to use it using the manual page:man find
. On unixoid systems executables are traditionally found in thebin
folder.
– arkascha
Nov 7 at 6:00
How did you install it? (What you call "indexes" seem to be directories.)
– Keith Thompson
Nov 7 at 6:02
I installed it from gcc-4.7.0.tar.gz by running configure and make.
– T. Wang
Nov 7 at 6:24
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I installed gcc 4.7.0 as a new version, but the result of gcc --version
did not change. I learned that I should set a link in /usr/bin/
to the gcc executable. However, under the index of 4.7.0 I installed there are 6 indexes:
bin include lib lib64 libexec share
I am not sure where I can find the gcc executable. Where should the gcc executable be commonly?
Thank you!
linux gcc centos
I installed gcc 4.7.0 as a new version, but the result of gcc --version
did not change. I learned that I should set a link in /usr/bin/
to the gcc executable. However, under the index of 4.7.0 I installed there are 6 indexes:
bin include lib lib64 libexec share
I am not sure where I can find the gcc executable. Where should the gcc executable be commonly?
Thank you!
linux gcc centos
linux gcc centos
asked Nov 7 at 5:57
T. Wang
63
63
Have a try using thefind
utility, read about how to use it using the manual page:man find
. On unixoid systems executables are traditionally found in thebin
folder.
– arkascha
Nov 7 at 6:00
How did you install it? (What you call "indexes" seem to be directories.)
– Keith Thompson
Nov 7 at 6:02
I installed it from gcc-4.7.0.tar.gz by running configure and make.
– T. Wang
Nov 7 at 6:24
add a comment |
Have a try using thefind
utility, read about how to use it using the manual page:man find
. On unixoid systems executables are traditionally found in thebin
folder.
– arkascha
Nov 7 at 6:00
How did you install it? (What you call "indexes" seem to be directories.)
– Keith Thompson
Nov 7 at 6:02
I installed it from gcc-4.7.0.tar.gz by running configure and make.
– T. Wang
Nov 7 at 6:24
Have a try using the
find
utility, read about how to use it using the manual page: man find
. On unixoid systems executables are traditionally found in the bin
folder.– arkascha
Nov 7 at 6:00
Have a try using the
find
utility, read about how to use it using the manual page: man find
. On unixoid systems executables are traditionally found in the bin
folder.– arkascha
Nov 7 at 6:00
How did you install it? (What you call "indexes" seem to be directories.)
– Keith Thompson
Nov 7 at 6:02
How did you install it? (What you call "indexes" seem to be directories.)
– Keith Thompson
Nov 7 at 6:02
I installed it from gcc-4.7.0.tar.gz by running configure and make.
– T. Wang
Nov 7 at 6:24
I installed it from gcc-4.7.0.tar.gz by running configure and make.
– T. Wang
Nov 7 at 6:24
add a comment |
1 Answer
1
active
oldest
votes
up vote
1
down vote
It should be under the /usr/bin
directory. If it is not, try to find with:
$ which gcc
New contributor
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
1
down vote
It should be under the /usr/bin
directory. If it is not, try to find with:
$ which gcc
New contributor
add a comment |
up vote
1
down vote
It should be under the /usr/bin
directory. If it is not, try to find with:
$ which gcc
New contributor
add a comment |
up vote
1
down vote
up vote
1
down vote
It should be under the /usr/bin
directory. If it is not, try to find with:
$ which gcc
New contributor
It should be under the /usr/bin
directory. If it is not, try to find with:
$ which gcc
New contributor
New contributor
answered Nov 7 at 6:52
kurtfu
2188
2188
New contributor
New contributor
add a comment |
add a comment |
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53184252%2fwhere-is-the-gcc-executable-under-linux%23new-answer', 'question_page');
}
);
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Have a try using the
find
utility, read about how to use it using the manual page:man find
. On unixoid systems executables are traditionally found in thebin
folder.– arkascha
Nov 7 at 6:00
How did you install it? (What you call "indexes" seem to be directories.)
– Keith Thompson
Nov 7 at 6:02
I installed it from gcc-4.7.0.tar.gz by running configure and make.
– T. Wang
Nov 7 at 6:24