List patch comments

GET /api/patches/72/comments/?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Link: 
<https://patches.dpdk.org/api/patches/72/comments/?format=api&page=1>; rel="first",
<https://patches.dpdk.org/api/patches/72/comments/?format=api&page=1>; rel="last"
Vary: Accept
[ { "id": 174, "web_url": "https://patches.dpdk.org/comment/174/", "msgid": "<4209989.BbgAFp5BjD@xps13>", "list_archive_url": "https://inbox.dpdk.org/dev/4209989.BbgAFp5BjD@xps13", "date": "2014-07-21T14:31:47", "subject": "Re: [dpdk-dev] [PATCH 4/4] rte.extvars.mk: allow user to override\n\tRTE_SDK_BIN", "submitter": { "id": 1, "url": "https://patches.dpdk.org/api/people/1/?format=api", "name": "Thomas Monjalon", "email": "thomas.monjalon@6wind.com" }, "content": "Hi,\n\n2014-07-20 20:47, Matthew Hall:\n> Without this patch it is impossible to compile the examples if you have\n> compiled the DPDK into the $(RTE_SDK)/build directory, or any other one\n> besides $(RTE_SDK)/$(RTE_TARGET).\n\nPlease, could you explain why is it impossible in your case?\n\nThe standard usage is:\n\tmake T=x86_64-native-linuxapp-gcc install\n\tmake T=x86_64-native-linuxapp-gcc examples O=x86_64-native-linuxapp-gcc/examples\n\nIf you don't want to use install mode, you can build like this:\n\tmake config T=x86_64-native-linuxapp-gcc\n\tmake\n\tmake -C examples RTE_SDK=$(pwd) RTE_TARGET=build O=$(readlink -m build/examples)\n\n> --- a/mk/rte.extvars.mk\n> +++ b/mk/rte.extvars.mk\n> -RTE_SDK_BIN := $(RTE_SDK)/$(RTE_TARGET)\n> +RTE_SDK_BIN ?= $(RTE_SDK)/$(RTE_TARGET)\n\nI don't understand why this change could help.\nYou can even use this:\n\tmake -C examples RTE_SDK=$(pwd) RTE_SDK_BIN=$(pwd)/build O=$(readlink -m build/examples)\nwithout the patch because command line override variables.\n\nNote that O= is optional.", "headers": { "Return-Path": "<thomas.monjalon@6wind.com>", "Received": [ "from mail-wg0-f47.google.com (mail-wg0-f47.google.com\n\t[74.125.82.47]) by dpdk.org (Postfix) with ESMTP id 7EAB1595A\n\tfor <dev@dpdk.org>; Mon, 21 Jul 2014 16:30:45 +0200 (CEST)", "by mail-wg0-f47.google.com with SMTP id b13so6397249wgh.18\n\tfor <dev@dpdk.org>; Mon, 21 Jul 2014 07:31:57 -0700 (PDT)", "from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136])\n\tby mx.google.com with ESMTPSA id\n\tcx5sm38067908wjb.8.2014.07.21.07.31.54 for <multiple recipients>\n\t(version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128);\n\tMon, 21 Jul 2014 07:31:55 -0700 (PDT)" ], "X-Google-DKIM-Signature": "v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20130820;\n\th=x-gm-message-state:from:to:cc:subject:date:message-id:organization\n\t:user-agent:in-reply-to:references:mime-version\n\t:content-transfer-encoding:content-type;\n\tbh=r2KccGyLFnKFS15AwSnhEJd/8t1WlkabNRG6FSU+JYw=;\n\tb=N5iW6N8+oHh+tgM61IdeVdu8Fvr5hzeVc9nByloXJwUFdXfo9Qvtnd9o//IgB9xOLl\n\tCOoGLgiAH/qNqBEj6jKeOuU2InzEm/DHu/IbzwREum6YrFpltHBm5Gc0cxULf3FtGrp4\n\tpbYcvcyUytkTRR53woqHQSru41F+lupxAyF0IaDNR992aPusaT5HN31D5zRnSFISug8r\n\t0+CO7fmRCX+kvK7d0nEHVebtmPQrbsiOB9wDKkFflPS/BZdR33p6Z6eJIPKxk8BUnX2f\n\t+yZ4QdcOLUNWMUtxZldrlK8oBDIvLw42ttPtBt7T6gntu3cteVT4NFdGj1tKGTKg5e41\n\t6/NQ==", "X-Gm-Message-State": "ALoCoQkDeqqe6SO3Nkxk72aFVBgpkDML1hxZzLL7PGgr3T2aryVNQgGIANUfkgv4oegSgZZL9qLD", "X-Received": "by 10.180.91.225 with SMTP id ch1mr5169109wib.34.1405953116512; \n\tMon, 21 Jul 2014 07:31:56 -0700 (PDT)", "From": "Thomas Monjalon <thomas.monjalon@6wind.com>", "To": "Matthew Hall <mhall@mhcomputing.net>", "Date": "Mon, 21 Jul 2014 16:31:47 +0200", "Message-ID": "<4209989.BbgAFp5BjD@xps13>", "Organization": "6WIND", "User-Agent": "KMail/4.13.2 (Linux/3.15.5-2-ARCH; KDE/4.13.2; x86_64; ; )", "In-Reply-To": "<1405914461-19335-5-git-send-email-mhall@mhcomputing.net>", "References": "<1405914461-19335-1-git-send-email-mhall@mhcomputing.net>\n\t<1405914461-19335-5-git-send-email-mhall@mhcomputing.net>", "MIME-Version": "1.0", "Content-Transfer-Encoding": "7Bit", "Content-Type": "text/plain; charset=\"us-ascii\"", "Cc": "dev@dpdk.org", "Subject": "Re: [dpdk-dev] [PATCH 4/4] rte.extvars.mk: allow user to override\n\tRTE_SDK_BIN", "X-BeenThere": "dev@dpdk.org", "X-Mailman-Version": "2.1.15", "Precedence": "list", "List-Id": "patches and discussions about DPDK <dev.dpdk.org>", "List-Unsubscribe": "<http://dpdk.org/ml/options/dev>,\n\t<mailto:dev-request@dpdk.org?subject=unsubscribe>", "List-Archive": "<http://dpdk.org/ml/archives/dev/>", "List-Post": "<mailto:dev@dpdk.org>", "List-Help": "<mailto:dev-request@dpdk.org?subject=help>", "List-Subscribe": "<http://dpdk.org/ml/listinfo/dev>,\n\t<mailto:dev-request@dpdk.org?subject=subscribe>", "X-List-Received-Date": "Mon, 21 Jul 2014 14:30:45 -0000" }, "addressed": null } ]