Stack-protector enabled but compiler support brokenDriver Compilation Redhatcompiling 64 bit linux kernel with gccHow to compile a kernel module against a new Sourcemodule compiling : asm/linkage.h file not foundError while building linux kernel 3.8.11 - unrecognized command line option “-fstack-protector”How can I rectify error “undefined reference to __mutex_lock_slowpath” during kernel compilation?Compilation error when compiling kernel on UbuntuHow do i fix this error ? “linux/linkage.h No such file or directory”Linux kernel module programming - Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-protector not supported by compilerLKM compiling - modpost syntax error
Anybody know what this small Nintendo stand is for?
What's the difference between 2a and 10a charging options?
Giant space birds hatching out of planets; short story
Commercial jet accompanied by small plane near Seattle
Why is drive/partition number still used?
Why didn't Britain or any other European power colonise Abyssinia/Ethiopia before 1936?
Is dd if=/dev/urandom of=/dev/mem safe?
This message is flooding my syslog, how to find where it comes from?
Does the Intel 8086 CPU have user mode and kernel mode?
kids pooling money for Lego League and taxes
How to judge a Ph.D. applicant that arrives "out of thin air"
Can I make a matrix from just a parts of the cells?
Request for a Latin phrase as motto "God is highest/supreme"
Explain why watch 'jobs' does not work but watch 'ps' work?
AC contactor 1 pole or 2?
Why are all my history books dividing Chinese history after the Han dynasty?
Word for showing a small part of something briefly to hint to its existence or beauty without fully uncovering it
Why can't my huge trees be chopped down?
Is there a reason why I should not use the HaveIBeenPwned API to warn users about exposed passwords?
What does "see" in "the Holy See" mean?
How to Create an Image for Cantor's *Diagonal Argument* with a Diagonal Oval
How to change the font style (not the size but the style) of algorithimc package
How to handle a player that cannot be convinced his actions are a problem for both GM and party
Will any serial mouse connect to Classic Macs?
Stack-protector enabled but compiler support broken
Driver Compilation Redhatcompiling 64 bit linux kernel with gccHow to compile a kernel module against a new Sourcemodule compiling : asm/linkage.h file not foundError while building linux kernel 3.8.11 - unrecognized command line option “-fstack-protector”How can I rectify error “undefined reference to __mutex_lock_slowpath” during kernel compilation?Compilation error when compiling kernel on UbuntuHow do i fix this error ? “linux/linkage.h No such file or directory”Linux kernel module programming - Cannot use CONFIG_CC_STACKPROTECTOR_REGULAR: -fstack-protector not supported by compilerLKM compiling - modpost syntax error
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am doing research on 4G SDN-LTE (software define network- long term evolution) using Ubuntu. First I ran .sh
file which gave me error that the kernel newer than 3.14.x is not supported. I installed kernel 3.10, 3.13.11, 3.14. It fixed the error. Currently I'm running linux kernel 3.13.11, now it gave me the error that stack-protector enabled but compiler is broken
.
I am building a 4G evolved packet core (EPC). The code is available on GitHub: https://github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. They used Ubuntu 14.04 for this project. Nothing else they have mentioned.
version 4:7.3.0 ubuntu 2.1
/usr/src/linux-headers-3.13.11-031311ckt39-generic/arch/x86/Makefile:96:
stack-protector enabled but compiler support broken Makefile:604: Cannot use CONFIG_CC_STACKPROTECTOR: -fstack-protector not supported by compiler
Makefile:604: *** missing separator. Stop.
make[4]: Leaving directory '/usr/src/linux-headers-3.13.11-031311ckt39-generic'
Makefile.main:70: recipe for target 'default' failed
make[3]: *** [default] Error 2
make[3]: Leaving directory '/home/shahrukh/shfiles/openvswitch-2.3.2/datapath/linux'
linux linux-kernel
add a comment |
I am doing research on 4G SDN-LTE (software define network- long term evolution) using Ubuntu. First I ran .sh
file which gave me error that the kernel newer than 3.14.x is not supported. I installed kernel 3.10, 3.13.11, 3.14. It fixed the error. Currently I'm running linux kernel 3.13.11, now it gave me the error that stack-protector enabled but compiler is broken
.
I am building a 4G evolved packet core (EPC). The code is available on GitHub: https://github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. They used Ubuntu 14.04 for this project. Nothing else they have mentioned.
version 4:7.3.0 ubuntu 2.1
/usr/src/linux-headers-3.13.11-031311ckt39-generic/arch/x86/Makefile:96:
stack-protector enabled but compiler support broken Makefile:604: Cannot use CONFIG_CC_STACKPROTECTOR: -fstack-protector not supported by compiler
Makefile:604: *** missing separator. Stop.
make[4]: Leaving directory '/usr/src/linux-headers-3.13.11-031311ckt39-generic'
Makefile.main:70: recipe for target 'default' failed
make[3]: *** [default] Error 2
make[3]: Leaving directory '/home/shahrukh/shfiles/openvswitch-2.3.2/datapath/linux'
linux linux-kernel
What exactly are you trying to build? Does the documentation list any system requirements? Which compiler version do you use?
– Bodo
Mar 26 at 17:31
i am building a 4G evolved packet core (EPC). the code is available on github github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. they used ubuntu 14.04 for this project. nothing else they have mentioned. version 4:7.3.0 ubuntu 2.1
– Shahrukh Ali Khan
Mar 26 at 17:47
Please edit your question to add this information. You can delete your comment afterwards. Please also show the commands you executed to build the software, even if it's onlymake
.
– Bodo
Mar 26 at 18:03
Bodo : Thanks very much for your comments. i installed 3.12.74 kernel and it work fine now.
– Shahrukh Ali Khan
Mar 26 at 18:15
This site is not only to give an answer to you personally, but also to find questions and answers for everyone else with a similar problem. That's why I suggest to edit your question and add the information from your first comment. You can answer the question yourself and write the information from your second comment as an answer. This might help other people who get the same error message.
– Bodo
Mar 27 at 9:23
add a comment |
I am doing research on 4G SDN-LTE (software define network- long term evolution) using Ubuntu. First I ran .sh
file which gave me error that the kernel newer than 3.14.x is not supported. I installed kernel 3.10, 3.13.11, 3.14. It fixed the error. Currently I'm running linux kernel 3.13.11, now it gave me the error that stack-protector enabled but compiler is broken
.
I am building a 4G evolved packet core (EPC). The code is available on GitHub: https://github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. They used Ubuntu 14.04 for this project. Nothing else they have mentioned.
version 4:7.3.0 ubuntu 2.1
/usr/src/linux-headers-3.13.11-031311ckt39-generic/arch/x86/Makefile:96:
stack-protector enabled but compiler support broken Makefile:604: Cannot use CONFIG_CC_STACKPROTECTOR: -fstack-protector not supported by compiler
Makefile:604: *** missing separator. Stop.
make[4]: Leaving directory '/usr/src/linux-headers-3.13.11-031311ckt39-generic'
Makefile.main:70: recipe for target 'default' failed
make[3]: *** [default] Error 2
make[3]: Leaving directory '/home/shahrukh/shfiles/openvswitch-2.3.2/datapath/linux'
linux linux-kernel
I am doing research on 4G SDN-LTE (software define network- long term evolution) using Ubuntu. First I ran .sh
file which gave me error that the kernel newer than 3.14.x is not supported. I installed kernel 3.10, 3.13.11, 3.14. It fixed the error. Currently I'm running linux kernel 3.13.11, now it gave me the error that stack-protector enabled but compiler is broken
.
I am building a 4G evolved packet core (EPC). The code is available on GitHub: https://github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. They used Ubuntu 14.04 for this project. Nothing else they have mentioned.
version 4:7.3.0 ubuntu 2.1
/usr/src/linux-headers-3.13.11-031311ckt39-generic/arch/x86/Makefile:96:
stack-protector enabled but compiler support broken Makefile:604: Cannot use CONFIG_CC_STACKPROTECTOR: -fstack-protector not supported by compiler
Makefile:604: *** missing separator. Stop.
make[4]: Leaving directory '/usr/src/linux-headers-3.13.11-031311ckt39-generic'
Makefile.main:70: recipe for target 'default' failed
make[3]: *** [default] Error 2
make[3]: Leaving directory '/home/shahrukh/shfiles/openvswitch-2.3.2/datapath/linux'
linux linux-kernel
linux linux-kernel
edited Mar 27 at 7:49
piet.t
10.2k7 gold badges35 silver badges48 bronze badges
10.2k7 gold badges35 silver badges48 bronze badges
asked Mar 26 at 17:23
Shahrukh Ali KhanShahrukh Ali Khan
113 bronze badges
113 bronze badges
What exactly are you trying to build? Does the documentation list any system requirements? Which compiler version do you use?
– Bodo
Mar 26 at 17:31
i am building a 4G evolved packet core (EPC). the code is available on github github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. they used ubuntu 14.04 for this project. nothing else they have mentioned. version 4:7.3.0 ubuntu 2.1
– Shahrukh Ali Khan
Mar 26 at 17:47
Please edit your question to add this information. You can delete your comment afterwards. Please also show the commands you executed to build the software, even if it's onlymake
.
– Bodo
Mar 26 at 18:03
Bodo : Thanks very much for your comments. i installed 3.12.74 kernel and it work fine now.
– Shahrukh Ali Khan
Mar 26 at 18:15
This site is not only to give an answer to you personally, but also to find questions and answers for everyone else with a similar problem. That's why I suggest to edit your question and add the information from your first comment. You can answer the question yourself and write the information from your second comment as an answer. This might help other people who get the same error message.
– Bodo
Mar 27 at 9:23
add a comment |
What exactly are you trying to build? Does the documentation list any system requirements? Which compiler version do you use?
– Bodo
Mar 26 at 17:31
i am building a 4G evolved packet core (EPC). the code is available on github github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. they used ubuntu 14.04 for this project. nothing else they have mentioned. version 4:7.3.0 ubuntu 2.1
– Shahrukh Ali Khan
Mar 26 at 17:47
Please edit your question to add this information. You can delete your comment afterwards. Please also show the commands you executed to build the software, even if it's onlymake
.
– Bodo
Mar 26 at 18:03
Bodo : Thanks very much for your comments. i installed 3.12.74 kernel and it work fine now.
– Shahrukh Ali Khan
Mar 26 at 18:15
This site is not only to give an answer to you personally, but also to find questions and answers for everyone else with a similar problem. That's why I suggest to edit your question and add the information from your first comment. You can answer the question yourself and write the information from your second comment as an answer. This might help other people who get the same error message.
– Bodo
Mar 27 at 9:23
What exactly are you trying to build? Does the documentation list any system requirements? Which compiler version do you use?
– Bodo
Mar 26 at 17:31
What exactly are you trying to build? Does the documentation list any system requirements? Which compiler version do you use?
– Bodo
Mar 26 at 17:31
i am building a 4G evolved packet core (EPC). the code is available on github github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. they used ubuntu 14.04 for this project. nothing else they have mentioned. version 4:7.3.0 ubuntu 2.1
– Shahrukh Ali Khan
Mar 26 at 17:47
i am building a 4G evolved packet core (EPC). the code is available on github github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. they used ubuntu 14.04 for this project. nothing else they have mentioned. version 4:7.3.0 ubuntu 2.1
– Shahrukh Ali Khan
Mar 26 at 17:47
Please edit your question to add this information. You can delete your comment afterwards. Please also show the commands you executed to build the software, even if it's only
make
.– Bodo
Mar 26 at 18:03
Please edit your question to add this information. You can delete your comment afterwards. Please also show the commands you executed to build the software, even if it's only
make
.– Bodo
Mar 26 at 18:03
Bodo : Thanks very much for your comments. i installed 3.12.74 kernel and it work fine now.
– Shahrukh Ali Khan
Mar 26 at 18:15
Bodo : Thanks very much for your comments. i installed 3.12.74 kernel and it work fine now.
– Shahrukh Ali Khan
Mar 26 at 18:15
This site is not only to give an answer to you personally, but also to find questions and answers for everyone else with a similar problem. That's why I suggest to edit your question and add the information from your first comment. You can answer the question yourself and write the information from your second comment as an answer. This might help other people who get the same error message.
– Bodo
Mar 27 at 9:23
This site is not only to give an answer to you personally, but also to find questions and answers for everyone else with a similar problem. That's why I suggest to edit your question and add the information from your first comment. You can answer the question yourself and write the information from your second comment as an answer. This might help other people who get the same error message.
– Bodo
Mar 27 at 9:23
add a comment |
0
active
oldest
votes
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%2f55362932%2fstack-protector-enabled-but-compiler-support-broken%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using 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%2f55362932%2fstack-protector-enabled-but-compiler-support-broken%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
What exactly are you trying to build? Does the documentation list any system requirements? Which compiler version do you use?
– Bodo
Mar 26 at 17:31
i am building a 4G evolved packet core (EPC). the code is available on github github.com/networkedsystemsIITB/SDN_LTE_EPC/find/master. they used ubuntu 14.04 for this project. nothing else they have mentioned. version 4:7.3.0 ubuntu 2.1
– Shahrukh Ali Khan
Mar 26 at 17:47
Please edit your question to add this information. You can delete your comment afterwards. Please also show the commands you executed to build the software, even if it's only
make
.– Bodo
Mar 26 at 18:03
Bodo : Thanks very much for your comments. i installed 3.12.74 kernel and it work fine now.
– Shahrukh Ali Khan
Mar 26 at 18:15
This site is not only to give an answer to you personally, but also to find questions and answers for everyone else with a similar problem. That's why I suggest to edit your question and add the information from your first comment. You can answer the question yourself and write the information from your second comment as an answer. This might help other people who get the same error message.
– Bodo
Mar 27 at 9:23