Commit e14519e7 authored by Brenden Blanco's avatar Brenden Blanco Committed by GitHub

Merge pull request #887 from rneugeba/cflags

Add -fno-stack-protector to CFLAGS
parents 9a174abe 5dfd199a
......@@ -89,6 +89,7 @@ int KBuildHelper::get_flags(const char *uname_machine, vector<string> *cflags) {
cflags->push_back("-D__HAVE_BUILTIN_BSWAP64__");
cflags->push_back("-Wno-unused-value");
cflags->push_back("-Wno-pointer-sign");
cflags->push_back("-fno-stack-protector");
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment