From 22111ebe59072fccaf70dfe341306a7cb6566ec4 Mon Sep 17 00:00:00 2001 From: zfl9 Date: Sat, 7 Mar 2020 15:49:22 +0800 Subject: remove `-no-pie` gcc option --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7267c36..48abc2f 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,12 @@ CC = gcc -CFLAGS = -std=c99 -Wall -Wextra -O2 -no-pie +CFLAGS = -std=c99 -Wall -Wextra -O2 LIBS = -lm SRCS = dns2tcp.c OBJS = $(SRCS:.c=.o) MAIN = dns2tcp DESTDIR = /usr/local/bin -EVCFLAGS = -w -O2 -no-pie +EVCFLAGS = -w -O2 EVSRCFILE = libev/ev.c EVOBJFILE = ev.o -- cgit v1.2.3