From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-yk0-f181.google.com (mail-yk0-f181.google.com [209.85.160.181]) by dpdk.org (Postfix) with ESMTP id 99D572E89 for ; Thu, 6 Nov 2014 21:12:05 +0100 (CET) Received: by mail-yk0-f181.google.com with SMTP id 19so1629631ykq.26 for ; Thu, 06 Nov 2014 12:21:33 -0800 (PST) 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=AdRxOvENcz1Dk27mGMXCzuwaoliJvdy4BF6O78lmzQY=; b=oYw17NFg/FGZ7ItToPsvMhacUnScbt8bhg6M8JjwVVvcJxdgBEEEeeyycCC/h8Aw/O dhGtAz8ceft3RO34MmdedMjY8midaW74EiddAu12Nt3wEEVB4ydJ+dmqkOUJ4a5z6LZS k8lRE4OSuHxX5zVXUexQ9NiU/TGOvD3fyhUdQsW5ELjh+sagXWLEobiNPGDhUAc5dnY0 EMg23tE9N0pVho0SAlrxcl+BQzztd4BJG/tqHnM+/fJhXyjQcoNGi0JIits226QroVSg lnK03vY4y+r4wXI7BoJZ1HWQU7vRt0R/R0XXGITOpDOtwsHxg5UiIApZuF7c2VpZKyyY LbxA== MIME-Version: 1.0 X-Received: by 10.236.53.34 with SMTP id f22mr6695563yhc.64.1415305293693; Thu, 06 Nov 2014 12:21:33 -0800 (PST) Received: by 10.170.225.136 with HTTP; Thu, 6 Nov 2014 12:21:33 -0800 (PST) Date: Fri, 7 Nov 2014 05:21:33 +0900 Message-ID: From: Keunhong Lee To: "dev@dpdk.org" Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.15 Subject: [dpdk-dev] Bugs in newest patches 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: Thu, 06 Nov 2014 20:12:06 -0000 Hi. I just pulled new patches from the master branch, and found that it doesn't work with C++. in lib/librte_eal/common/include/generic/rte_cycles.h missing opening extern "C" in commit fa4001c30ee9d9ecfb3ca5d93d68ef0394e9950a here is the fix. ----- * Simple Time Reference Functions (Cycles and HPET). */ +#ifdef __cplusplus +extern "C" { +#endif + #include #include #include ---- Keunhong.