From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id C663A6CC3 for ; Fri, 16 Sep 2016 19:04:04 +0200 (CEST) Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP; 16 Sep 2016 10:04:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,345,1470726000"; d="scan'208,217";a="10191065" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by orsmga004.jf.intel.com with ESMTP; 16 Sep 2016 10:04:03 -0700 Received: from fmsmsx101.amr.corp.intel.com ([169.254.1.89]) by FMSMSX103.amr.corp.intel.com ([10.18.124.201]) with mapi id 14.03.0248.002; Fri, 16 Sep 2016 10:04:03 -0700 From: "Lu, Patrick" To: "dev@dpdk.org" Thread-Topic: How to include pre-build object file (.o) in DPDK makefile? Thread-Index: AdIQO//+Nh1RVPhZR5mIRsQSc7Kr/w== Date: Fri, 16 Sep 2016 17:04:03 +0000 Message-ID: Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.1.200.107] MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] How to include pre-build object file (.o) in DPDK makefile? X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Sep 2016 17:04:05 -0000 Hi, I'm trying to include some hand written assembly (compiled by yasm) in my D= PDK program. I couldn't find any example linking the DPDK C code with pre-c= ompiled .o file. I've searched the mk/ and found OBJS-y seems the right var= iable to include .o file, but when generating the final executable, OBJS-y = contains only main.o (generating from main.c). I've tried to put my .o file in both source directory as well as build/ Thanks, Patrick