From 51c736a92cdced186ed5853ca4ee2e91fe56fc3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?= Date: Fri, 20 Mar 2015 12:16:28 +0100 Subject: [PATCH] qrexec: enable compiler optimization --- qrexec/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qrexec/Makefile b/qrexec/Makefile index be1add1..5a24850 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)` LIBS=`pkg-config --libs vchan-$(BACKEND_VMM)` -lqrexec-utils