From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anatoly Burakov Subject: [RFC 3/4] apps: enable new secondary process support in multiprocess apps Date: Fri, 19 May 2017 17:39:45 +0100 Message-ID: <1495211986-15177-4-git-send-email-anatoly.burakov@intel.com> References: <1495211986-15177-1-git-send-email-anatoly.burakov@intel.com> To: dev@dpdk.org Return-path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 49658107A for ; Fri, 19 May 2017 18:39:50 +0200 (CEST) Received: from sivswdev02.ir.intel.com (sivswdev02.ir.intel.com [10.237.217.46]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id v4JGdkgH024648 for ; Fri, 19 May 2017 17:39:46 +0100 Received: from sivswdev02.ir.intel.com (localhost [127.0.0.1]) by sivswdev02.ir.intel.com with ESMTP id v4JGdkVl015332 for ; Fri, 19 May 2017 17:39:46 +0100 Received: (from aburakov@localhost) by sivswdev02.ir.intel.com with œ id v4JGdkT4015328 for dev@dpdk.org; Fri, 19 May 2017 17:39:46 +0100 In-Reply-To: <1495211986-15177-1-git-send-email-anatoly.burakov@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Anatoly Burakov --- examples/multi_process/client_server_mp/mp_client/Makefile | 2 +- examples/multi_process/simple_mp/Makefile | 2 +- examples/multi_process/symmetric_mp/Makefile | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/multi_process/client_server_mp/mp_client/Makefile b/examples/multi_process/client_server_mp/mp_client/Makefile index 2688fed..081832e 100644 --- a/examples/multi_process/client_server_mp/mp_client/Makefile +++ b/examples/multi_process/client_server_mp/mp_client/Makefile @@ -42,7 +42,7 @@ APP = mp_client # all source are stored in SRCS-y SRCS-y := client.c -CFLAGS += $(WERROR_FLAGS) -O3 +CFLAGS += $(WERROR_FLAGS) -O3 -rdynamic -fPIC -pie CFLAGS += -I$(SRCDIR)/../shared include $(RTE_SDK)/mk/rte.extapp.mk diff --git a/examples/multi_process/simple_mp/Makefile b/examples/multi_process/simple_mp/Makefile index 31ec0c8..f74f456 100644 --- a/examples/multi_process/simple_mp/Makefile +++ b/examples/multi_process/simple_mp/Makefile @@ -44,7 +44,7 @@ APP = simple_mp # all source are stored in SRCS-y SRCS-y := main.c mp_commands.c -CFLAGS += -O3 +CFLAGS += -O3 -rdynamic -fPIC -pie CFLAGS += $(WERROR_FLAGS) include $(RTE_SDK)/mk/rte.extapp.mk diff --git a/examples/multi_process/symmetric_mp/Makefile b/examples/multi_process/symmetric_mp/Makefile index c789f3c..e9e9bf8 100644 --- a/examples/multi_process/symmetric_mp/Makefile +++ b/examples/multi_process/symmetric_mp/Makefile @@ -44,7 +44,7 @@ APP = symmetric_mp # all source are stored in SRCS-y SRCS-y := main.c -CFLAGS += -O3 +CFLAGS += -O3 -rdynamic -fPIC -pie CFLAGS += $(WERROR_FLAGS) include $(RTE_SDK)/mk/rte.extapp.mk -- 2.7.4