why make command is not working in solaris 11 server?Why should text files end with a newline?npm throws error without sudoHow to install python libxml2 in solaris?Run ssh and immediately execute commandEchoing time string to log file on Solaris?ssh command is not working while connecting linux to solarisSOLARIS 10 Date Arithmeticsudo: npm: command not foundSed command garbled on SolarisApache http server, Solaris 8
Invert Some Switches on a Switchboard
Short story about a group of sci-fi writers sitting around discussing their profession
Inverse Colombian Function
Historicity doubted by Romans
What happens when two cards both modify what I'm allowed to do?
How can I make sure my players' decisions have consequences?
Raw curve25519 public key points
Why did computer video outputs go from digital to analog, then back to digital?
Why is chess failing to attract big name sponsors?
High income and difficulty during interviews
Who controls a summoned steed’s familiar?
Articles with professions
What's the explanation for this joke about a three-legged dog that walks into a bar?
ExactlyOne extension method
Using "Kollege" as "university friend"?
How can I deal with someone that wants to kill something that isn't supposed to be killed?
Issue with ContourPlot
How can Kazakhstan perform MITM attacks on all HTTPS traffic?
Can 々 stand for a duplicated kanji with a different reading?
What do I do when a student working in my lab "ghosts" me?
Grid/table with lots of buttons
What the purpose of the fuel shutoff valve?
Impact of throwing away fruit waste on a peak > 3200 m above a glacier
what to say when a company asks you why someone (a friend) who was fired left?
why make command is not working in solaris 11 server?
Why should text files end with a newline?npm throws error without sudoHow to install python libxml2 in solaris?Run ssh and immediately execute commandEchoing time string to log file on Solaris?ssh command is not working while connecting linux to solarisSOLARIS 10 Date Arithmeticsudo: npm: command not foundSed command garbled on SolarisApache http server, Solaris 8
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to build a package in my solaris 11 server. I am using 'make'command for that and not able to build package
have already tried below commands:-
1)make
2)sudo make
3)make package
The error I am getting
bash-4.4$ make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ sudo make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ ^C
bash-4.4$ ^C
bash-4.4$
unix package solaris
add a comment |
I am trying to build a package in my solaris 11 server. I am using 'make'command for that and not able to build package
have already tried below commands:-
1)make
2)sudo make
3)make package
The error I am getting
bash-4.4$ make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ sudo make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ ^C
bash-4.4$ ^C
bash-4.4$
unix package solaris
add a comment |
I am trying to build a package in my solaris 11 server. I am using 'make'command for that and not able to build package
have already tried below commands:-
1)make
2)sudo make
3)make package
The error I am getting
bash-4.4$ make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ sudo make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ ^C
bash-4.4$ ^C
bash-4.4$
unix package solaris
I am trying to build a package in my solaris 11 server. I am using 'make'command for that and not able to build package
have already tried below commands:-
1)make
2)sudo make
3)make package
The error I am getting
bash-4.4$ make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ sudo make
cc -c timeout.c
sh: cc: not found
*** Error code 127
make: Fatal error: Command failed for target `timeout.o'
bash-4.4$ ^C
bash-4.4$ ^C
bash-4.4$
unix package solaris
unix package solaris
asked Mar 26 at 15:07
tani joshitani joshi
114 bronze badges
114 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
sh: cc: not found
means you do not have a program named cc found in your $PATH
, so it can't figure out what C compiler you want it to run.
If you've installed the Oracle Developer Studio compilers, then you need to add the path to them to your $PATH
environment variable.
If you're using gcc instead, you probably need to run make CC=gcc
to set the CC variable to the name of the compiler you want to use.
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In the directory you tried to run themake
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.
– alanc
Mar 31 at 5:12
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55360430%2fwhy-make-command-is-not-working-in-solaris-11-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
sh: cc: not found
means you do not have a program named cc found in your $PATH
, so it can't figure out what C compiler you want it to run.
If you've installed the Oracle Developer Studio compilers, then you need to add the path to them to your $PATH
environment variable.
If you're using gcc instead, you probably need to run make CC=gcc
to set the CC variable to the name of the compiler you want to use.
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In the directory you tried to run themake
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.
– alanc
Mar 31 at 5:12
add a comment |
sh: cc: not found
means you do not have a program named cc found in your $PATH
, so it can't figure out what C compiler you want it to run.
If you've installed the Oracle Developer Studio compilers, then you need to add the path to them to your $PATH
environment variable.
If you're using gcc instead, you probably need to run make CC=gcc
to set the CC variable to the name of the compiler you want to use.
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In the directory you tried to run themake
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.
– alanc
Mar 31 at 5:12
add a comment |
sh: cc: not found
means you do not have a program named cc found in your $PATH
, so it can't figure out what C compiler you want it to run.
If you've installed the Oracle Developer Studio compilers, then you need to add the path to them to your $PATH
environment variable.
If you're using gcc instead, you probably need to run make CC=gcc
to set the CC variable to the name of the compiler you want to use.
sh: cc: not found
means you do not have a program named cc found in your $PATH
, so it can't figure out what C compiler you want it to run.
If you've installed the Oracle Developer Studio compilers, then you need to add the path to them to your $PATH
environment variable.
If you're using gcc instead, you probably need to run make CC=gcc
to set the CC variable to the name of the compiler you want to use.
answered Mar 26 at 20:07
alancalanc
3,55616 silver badges22 bronze badges
3,55616 silver badges22 bronze badges
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In the directory you tried to run themake
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.
– alanc
Mar 31 at 5:12
add a comment |
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In the directory you tried to run themake
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.
– alanc
Mar 31 at 5:12
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In which directory do i need to run make CC=gcc, any specific path or I can execute this command from any directory.
– tani joshi
Mar 27 at 3:38
In the directory you tried to run the
make
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.– alanc
Mar 31 at 5:12
In the directory you tried to run the
make
command shown above - this does not change the configuration of your server, but is an added argument to the make command you tried to run to tell it to use a different compiler for this operation.– alanc
Mar 31 at 5:12
add a comment |
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
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
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55360430%2fwhy-make-command-is-not-working-in-solaris-11-server%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown