From c33565b001a6fb4e9b0fe96b2d0097a012226e71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Fri, 20 Mar 2015 12:06:33 +0100 Subject: [PATCH] qrexec: enable compiler optimization Besides obvious profits, it also enables some additional compiler warnings. --- qrexec/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrexec/Makefile b/qrexec/Makefile index 3f27f63..96c9c78 100644 --- a/qrexec/Makefile +++ b/qrexec/Makefile @@ -1,5 +1,5 @@ CC=gcc -CFLAGS+=-I. -g -Wall -Wextra -Werror -pie -fPIC `pkg-config --cflags vchan-$(BACKEND_VMM)` +CFLAGS+=-I. -g -O2 -Wall -Wextra -Werror -pie -fPIC `pkg-config --cflags vchan-$(BACKEND_VMM)` LDFLAGS=-pie LDLIBS=`pkg-config --libs vchan-$(BACKEND_VMM)` -lqrexec-utils