security: Enable '-fpie -pie' options

To be sure acrn debug tools are position independent
and executable.

Tracked-On: #1122
Signed-off-by: wenshelx <wenshengx.wang@intel.com>
Acked-by: CHEN Gang <gang.c.chen@intel.com>
Acked-by: Geoffroy Van Cutsem <geoffroy.vancutsem@intel.com>
This commit is contained in:
wenshelx
2018-09-06 10:14:48 +08:00
committed by lijinxia
parent 5c5aed6188
commit 6ee9321bd8
4 changed files with 12 additions and 5 deletions

View File

@@ -1,8 +1,10 @@
OUT_DIR ?= .
CFLAGS += -fpie
LDFLAGS += -pie
all:
$(CC) -g acrnlog.c -o $(OUT_DIR)/acrnlog -lpthread
$(CC) -g acrnlog.c -o $(OUT_DIR)/acrnlog -lpthread $(CFLAGS) $(LDFLAGS)
cp acrnlog.service $(OUT_DIR)/acrnlog.service
clean: