Commit 219a99c7 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Andrei Vagin

compel: cli -- Add more flags into cflags report

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@virtuozzo.com>
Signed-off-by: 's avatarAndrei Vagin <avagin@virtuozzo.com>
parent c1133055
......@@ -15,8 +15,14 @@
#include "version.h"
#include "piegen.h"
static const char compel_cflags_pie[] = "-fpie -Wa,--noexecstack -fno-stack-protector";
static const char compel_cflags_nopic[] = "-fno-pic -Wa,--noexecstack -fno-stack-protector";
static const char compel_cflags_pie[] =
"-fpie -Wstrict-prototypes -Wa,--noexecstack "
"-fno-stack-protector -fno-jump-tables -nostdlib "
"-fomit-frame-pointer";
static const char compel_cflags_nopic[] =
"-fno-pic -Wstrict-prototypes -Wa,--noexecstack "
"-fno-stack-protector -fno-jump-tables -nostdlib "
"-fomit-frame-pointer";
static const char compel_ldflags[] = "-r";
piegen_opt_t opts = {
......
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