From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wg0-f46.google.com (mail-wg0-f46.google.com [74.125.82.46]) by dpdk.org (Postfix) with ESMTP id 56EB87F9D for ; Fri, 10 Oct 2014 08:29:50 +0200 (CEST) Received: by mail-wg0-f46.google.com with SMTP id l18so3038342wgh.17 for ; Thu, 09 Oct 2014 23:37:15 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=HuS3OGmI8IPrfVdKeYfCm4vUK8mRkqTliURdZZzPTFE=; b=VPbNOEf97Z9M597CTiLW4Iy4kOOxQRaqxn01+HFsZDz3y2v/CDqY9BRadEKWCKPCje zD2KdWmsz8lS/a38APOHJ+DgzVKkMRQ/eUnpeh4p23GZJmp9IEzCI5x5LKM2kAqYMb2k IddsWLp0kwXzesWLrDUtPE/hu8VglCAoLa6SwRoEEHlFuKYbVMVyD/ZLo4AUuzrNLYGN kohG5bmdC6+mvUDlpRDyjZnGa5ifCrLKdlWuuuTUlv+5JvIqswd3T143/LmdXS93AWv2 JyfWpe1K2Dwhx0YuE3YkItqkkrW2AgEDQ3HZmEXzvvwJyQdrFsswlIUkF1PYToeJaUc3 cLng== MIME-Version: 1.0 X-Received: by 10.181.13.132 with SMTP id ey4mr2456513wid.33.1412923035470; Thu, 09 Oct 2014 23:37:15 -0700 (PDT) Received: by 10.194.17.167 with HTTP; Thu, 9 Oct 2014 23:37:15 -0700 (PDT) Date: Fri, 10 Oct 2014 12:07:15 +0530 Message-ID: From: Prashant Upadhyaya To: dev@dpdk.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] Help with compilation of .s files with DPDK build system 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, 10 Oct 2014 06:29:50 -0000 Hi, I have an application which consists of *.c files and I have been using the DPDK build system happily so far. The way I do it is I include the rte.vars.mk and rte.extlib.mk in my application Makefile. I set the LIB variable to .a I set SRCS-y := And that's it, it works. Now recently, I need to introduce the compilation of .s file (not .S) I can easily compile it by hand using gcc, but I can't seem to find a trick to compile it with DPDK environment. Any advises ? Regards -Prashant