* [PATCH] add a build.sh helper to allow for a one-stop build
@ 2016-10-10 15:28 Christoph Hellwig
[not found] ` <1476113282-19194-1-git-send-email-hch-jcswGhMUV9g@public.gmane.org>
0 siblings, 1 reply; 13+ messages in thread
From: Christoph Hellwig @ 2016-10-10 15:28 UTC (permalink / raw)
To: jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/
Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA
This allows for a quick build instead of typing the whole mkdir, cd,
cmake and ninja sequence.
Signed-off-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org>
---
README.md | 5 +----
build.sh | 12 ++++++++++++
2 files changed, 13 insertions(+), 4 deletions(-)
create mode 100755 build.sh
diff --git a/README.md b/README.md
index 98ec5a7..2ddecc3 100644
--- a/README.md
+++ b/README.md
@@ -36,10 +36,7 @@ Additional service daemons are provided for:
This project uses a cmake based build system. Quick start:
```sh
-$ mkdir build
-$ cd build
-$ cmake -GNinja ..
-$ ninja
+$ sh build.sh
```
*build/bin* will contain the sample programs and *build/lib* will contain the
diff --git a/build.sh b/build.sh
new file mode 100755
index 0000000..e3d85eb
--- /dev/null
+++ b/build.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+SRCDIR=`dirname $0`
+BUILDDIR="$SRCDIR/build"
+
+if [ ! -d "$BUILDDIR" ]; then
+ mkdir $BUILDDIR
+fi
+
+cd $BUILDDIR
+cmake -GNinja ..
+ninja
--
2.10.1.382.ga23ca1b
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 13+ messages in thread[parent not found: <1476113282-19194-1-git-send-email-hch-jcswGhMUV9g@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <1476113282-19194-1-git-send-email-hch-jcswGhMUV9g@public.gmane.org> @ 2016-10-10 15:56 ` Bart Van Assche [not found] ` <c2d80cd4-74b8-8391-1855-3c666f611d91-HInyCGIudOg@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Bart Van Assche @ 2016-10-10 15:56 UTC (permalink / raw) To: Christoph Hellwig, jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/ Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA On 10/10/16 08:28, Christoph Hellwig wrote: > *build/bin* will contain the sample programs and *build/lib* will contain the > diff --git a/build.sh b/build.sh > new file mode 100755 > index 0000000..e3d85eb > --- /dev/null > +++ b/build.sh > @@ -0,0 +1,12 @@ > +#!/bin/sh > + > +SRCDIR=`dirname $0` > +BUILDDIR="$SRCDIR/build" > + > +if [ ! -d "$BUILDDIR" ]; then > + mkdir $BUILDDIR > +fi > + > +cd $BUILDDIR > +cmake -GNinja .. > +ninja Hello Christoph, Have you considered to make this script stop immediately if one of the steps fails, e.g. as follows? mkdir -p "$BUILDDIR" && cd build && cmake -G Ninja .. && ninja Thanks, Bart. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <c2d80cd4-74b8-8391-1855-3c666f611d91-HInyCGIudOg@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <c2d80cd4-74b8-8391-1855-3c666f611d91-HInyCGIudOg@public.gmane.org> @ 2016-10-10 15:59 ` Christoph Hellwig [not found] ` <20161010155949.GA20091-jcswGhMUV9g@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Christoph Hellwig @ 2016-10-10 15:59 UTC (permalink / raw) To: Bart Van Assche Cc: Christoph Hellwig, jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Mon, Oct 10, 2016 at 08:56:33AM -0700, Bart Van Assche wrote: > Have you considered to make this script stop immediately if one of the > steps fails, e.g. as follows? How about just ading a set -e to the beginning to get this automatically? -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161010155949.GA20091-jcswGhMUV9g@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161010155949.GA20091-jcswGhMUV9g@public.gmane.org> @ 2016-10-10 16:17 ` Bart Van Assche [not found] ` <ec4f3158-a25d-7cd8-216c-fbec52577e75-HInyCGIudOg@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Bart Van Assche @ 2016-10-10 16:17 UTC (permalink / raw) To: Christoph Hellwig Cc: jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/, linux-rdma-u79uwXL29TY76Z2rM5mHXA On 10/10/16 08:59, Christoph Hellwig wrote: > On Mon, Oct 10, 2016 at 08:56:33AM -0700, Bart Van Assche wrote: >> Have you considered to make this script stop immediately if one of the >> steps fails, e.g. as follows? > > How about just ading a > > set -e > > to the beginning to get this automatically? That would also work. But if there is a space anywhere in the path in which the rdma-core repository exists, mkdir $BUILDDIR will have to be changed into mkdir "$BUILDDIR". Bart. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <ec4f3158-a25d-7cd8-216c-fbec52577e75-HInyCGIudOg@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <ec4f3158-a25d-7cd8-216c-fbec52577e75-HInyCGIudOg@public.gmane.org> @ 2016-10-10 16:47 ` Jason Gunthorpe [not found] ` <20161010164758.GB1796-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Jason Gunthorpe @ 2016-10-10 16:47 UTC (permalink / raw) To: Bart Van Assche; +Cc: Christoph Hellwig, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Mon, Oct 10, 2016 at 09:17:11AM -0700, Bart Van Assche wrote: > On 10/10/16 08:59, Christoph Hellwig wrote: > >On Mon, Oct 10, 2016 at 08:56:33AM -0700, Bart Van Assche wrote: > >>Have you considered to make this script stop immediately if one of the > >>steps fails, e.g. as follows? > > > >How about just ading a > > > >set -e > > > >to the beginning to get this automatically? > > That would also work. But if there is a space anywhere in the path in which > the rdma-core repository exists, mkdir $BUILDDIR will have to be changed > into mkdir "$BUILDDIR". Is this OK? >From 6362ec4c1ddec0f6b2a1bf052cdfde63cbf73d90 Mon Sep 17 00:00:00 2001 From: Jason Gunthorpe <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> Date: Mon, 10 Oct 2016 10:46:47 -0600 Subject: [PATCH] Add a build.sh helper to allow for a one-stop build This allows for a quick build instead of typing the whole mkdir, cd, cmake and ninja sequence. Signed-off-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org> Signed-off-by: Jason Gunthorpe <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> --- README.md | 17 +---------------- build.sh | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 16 deletions(-) create mode 100755 build.sh diff --git a/README.md b/README.md index 98ec5a7d695f..66aee3f49f00 100644 --- a/README.md +++ b/README.md @@ -36,10 +36,7 @@ Additional service daemons are provided for: This project uses a cmake based build system. Quick start: ```sh -$ mkdir build -$ cd build -$ cmake -GNinja .. -$ ninja +$ bash build.sh ``` *build/bin* will contain the sample programs and *build/lib* will contain the @@ -76,16 +73,6 @@ Install required packages: $ yum install cmake gcc libnl3-devel make pkgconfig valgrind-devel ``` -For end users, the package can be built using GNU Make and the old cmake -included with the distro: - -```sh -$ mkdir build -$ cd build -$ cmake .. -$ make -``` - Developers are suggested to install more modern tooling for the best experience. ```sh @@ -96,8 +83,6 @@ $ unzip ninja-linux.zip $ install -m755 ninja /usr/local/bin/ninja ``` -Use the 'cmake3' program in place of `cmake` in the above instructions. - # Reporting bugs Bugs should be reported to the <linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> mailing list diff --git a/build.sh b/build.sh new file mode 100755 index 000000000000..76205e6af921 --- /dev/null +++ b/build.sh @@ -0,0 +1,33 @@ +#!/bin/bash +set -e + +SRCDIR=`dirname $0` +BUILDDIR="$SRCDIR/build" + +if [ ! -d "$BUILDDIR" ]; then + mkdir "$BUILDDIR" +fi + +if hash cmake3 2>/dev/null; then + # CentOS users are encouraged to install cmake3 from EPEL + CMAKE=cmake3 +else + CMAKE=cmake +fi + +if hash ninja-build 2>/dev/null; then + # Fedora uses this name + NINJA=ninja-build +elif hash ninja 2>/dev/null; then + NINJA=ninja +fi + +cd "$BUILDDIR" + +if [ "x$NINJA" == "x" ]; then + cmake .. + make +else + cmake -GNinja .. + $NINJA +fi -- 2.7.4 -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 13+ messages in thread
[parent not found: <20161010164758.GB1796-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161010164758.GB1796-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> @ 2016-10-10 16:51 ` Christoph Hellwig [not found] ` <20161010165115.GA8385-jcswGhMUV9g@public.gmane.org> 2016-10-12 9:30 ` Leon Romanovsky 1 sibling, 1 reply; 13+ messages in thread From: Christoph Hellwig @ 2016-10-10 16:51 UTC (permalink / raw) To: Jason Gunthorpe Cc: Bart Van Assche, Christoph Hellwig, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Mon, Oct 10, 2016 at 10:47:58AM -0600, Jason Gunthorpe wrote: > Is this OK? Looks fine to me. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161010165115.GA8385-jcswGhMUV9g@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161010165115.GA8385-jcswGhMUV9g@public.gmane.org> @ 2016-10-10 17:46 ` Bart Van Assche 0 siblings, 0 replies; 13+ messages in thread From: Bart Van Assche @ 2016-10-10 17:46 UTC (permalink / raw) To: Christoph Hellwig, Jason Gunthorpe; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA On 10/10/2016 09:51 AM, Christoph Hellwig wrote: > On Mon, Oct 10, 2016 at 10:47:58AM -0600, Jason Gunthorpe wrote: >> Is this OK? > > Looks fine to me. This looks fine to me too. Bart. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161010164758.GB1796-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> 2016-10-10 16:51 ` Christoph Hellwig @ 2016-10-12 9:30 ` Leon Romanovsky [not found] ` <20161012093015.GS9282-2ukJVAZIZ/Y@public.gmane.org> 1 sibling, 1 reply; 13+ messages in thread From: Leon Romanovsky @ 2016-10-12 9:30 UTC (permalink / raw) To: Jason Gunthorpe Cc: Bart Van Assche, Christoph Hellwig, linux-rdma-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 2916 bytes --] On Mon, Oct 10, 2016 at 10:47:58AM -0600, Jason Gunthorpe wrote: > On Mon, Oct 10, 2016 at 09:17:11AM -0700, Bart Van Assche wrote: > > On 10/10/16 08:59, Christoph Hellwig wrote: > > >On Mon, Oct 10, 2016 at 08:56:33AM -0700, Bart Van Assche wrote: > > >>Have you considered to make this script stop immediately if one of the > > >>steps fails, e.g. as follows? > > > > > >How about just ading a > > > > > >set -e > > > > > >to the beginning to get this automatically? > > > > That would also work. But if there is a space anywhere in the path in which > > the rdma-core repository exists, mkdir $BUILDDIR will have to be changed > > into mkdir "$BUILDDIR". > > Is this OK? > > From 6362ec4c1ddec0f6b2a1bf052cdfde63cbf73d90 Mon Sep 17 00:00:00 2001 > From: Jason Gunthorpe <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> > Date: Mon, 10 Oct 2016 10:46:47 -0600 > Subject: [PATCH] Add a build.sh helper to allow for a one-stop build > > This allows for a quick build instead of typing the whole mkdir, cd, > cmake and ninja sequence. > > Signed-off-by: Christoph Hellwig <hch-jcswGhMUV9g@public.gmane.org> > Signed-off-by: Jason Gunthorpe <jgunthorpe-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> > --- > README.md | 17 +---------------- > build.sh | 33 +++++++++++++++++++++++++++++++++ > 2 files changed, 34 insertions(+), 16 deletions(-) > create mode 100755 build.sh > > diff --git a/README.md b/README.md > index 98ec5a7d695f..66aee3f49f00 100644 > --- a/README.md > +++ b/README.md > @@ -36,10 +36,7 @@ Additional service daemons are provided for: > This project uses a cmake based build system. Quick start: > > ```sh > -$ mkdir build > -$ cd build > -$ cmake -GNinja .. > -$ ninja > +$ bash build.sh > ``` > > *build/bin* will contain the sample programs and *build/lib* will contain the > @@ -76,16 +73,6 @@ Install required packages: > $ yum install cmake gcc libnl3-devel make pkgconfig valgrind-devel > ``` > > -For end users, the package can be built using GNU Make and the old cmake > -included with the distro: > - > -```sh > -$ mkdir build > -$ cd build > -$ cmake .. > -$ make > -``` > - > Developers are suggested to install more modern tooling for the best experience. > > ```sh > @@ -96,8 +83,6 @@ $ unzip ninja-linux.zip > $ install -m755 ninja /usr/local/bin/ninja > ``` > > -Use the 'cmake3' program in place of `cmake` in the above instructions. > - > # Reporting bugs > > Bugs should be reported to the <linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> mailing list > diff --git a/build.sh b/build.sh > new file mode 100755 > index 000000000000..76205e6af921 > --- /dev/null > +++ b/build.sh > @@ -0,0 +1,33 @@ > +#!/bin/bash > +set -e > + > +SRCDIR=`dirname $0` > +BUILDDIR="$SRCDIR/build" > + > +if [ ! -d "$BUILDDIR" ]; then > + mkdir "$BUILDDIR" > +fi What do you think about following code, instead of 3 lines above? + mkdir -p "$BUILDDIR" [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161012093015.GS9282-2ukJVAZIZ/Y@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161012093015.GS9282-2ukJVAZIZ/Y@public.gmane.org> @ 2016-10-12 10:52 ` Christoph Hellwig [not found] ` <20161012105208.GA9491-jcswGhMUV9g@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Christoph Hellwig @ 2016-10-12 10:52 UTC (permalink / raw) To: Leon Romanovsky Cc: Jason Gunthorpe, Bart Van Assche, Christoph Hellwig, linux-rdma-u79uwXL29TY76Z2rM5mHXA [full quote deleted, sigh..] > What do you think about following code, instead of 3 lines above? > > + mkdir -p "$BUILDDIR" Fine with me. Feel free to send an incremental patch. -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161012105208.GA9491-jcswGhMUV9g@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161012105208.GA9491-jcswGhMUV9g@public.gmane.org> @ 2016-10-12 12:18 ` Leon Romanovsky [not found] ` <20161012121845.GT9282-2ukJVAZIZ/Y@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Leon Romanovsky @ 2016-10-12 12:18 UTC (permalink / raw) To: Christoph Hellwig Cc: Jason Gunthorpe, Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 357 bytes --] On Wed, Oct 12, 2016 at 12:52:08PM +0200, Christoph Hellwig wrote: > [full quote deleted, sigh..] > > > What do you think about following code, instead of 3 lines above? > > > > + mkdir -p "$BUILDDIR" > > Fine with me. Feel free to send an incremental patch. https://github.com/linux-rdma/rdma-core/pull/17 I'll apply it once travis will finish. Thanks [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161012121845.GT9282-2ukJVAZIZ/Y@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161012121845.GT9282-2ukJVAZIZ/Y@public.gmane.org> @ 2016-10-12 12:22 ` Leon Romanovsky [not found] ` <20161012122220.GU9282-2ukJVAZIZ/Y@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Leon Romanovsky @ 2016-10-12 12:22 UTC (permalink / raw) To: Christoph Hellwig Cc: Jason Gunthorpe, Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 466 bytes --] On Wed, Oct 12, 2016 at 03:18:45PM +0300, Leon Romanovsky wrote: > On Wed, Oct 12, 2016 at 12:52:08PM +0200, Christoph Hellwig wrote: > > [full quote deleted, sigh..] > > > > > What do you think about following code, instead of 3 lines above? > > > > > > + mkdir -p "$BUILDDIR" > > > > Fine with me. Feel free to send an incremental patch. > > https://github.com/linux-rdma/rdma-core/pull/17 > > I'll apply it once travis will finish. Done, applied. > > Thanks [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161012122220.GU9282-2ukJVAZIZ/Y@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161012122220.GU9282-2ukJVAZIZ/Y@public.gmane.org> @ 2016-10-12 16:38 ` Jason Gunthorpe [not found] ` <20161012163834.GA18838-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> 0 siblings, 1 reply; 13+ messages in thread From: Jason Gunthorpe @ 2016-10-12 16:38 UTC (permalink / raw) To: Leon Romanovsky Cc: Christoph Hellwig, Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA On Wed, Oct 12, 2016 at 03:22:20PM +0300, Leon Romanovsky wrote: > Done, applied. Are you going to sweep up the rest of the list patches too? Jason -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 13+ messages in thread
[parent not found: <20161012163834.GA18838-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>]
* Re: [PATCH] add a build.sh helper to allow for a one-stop build [not found] ` <20161012163834.GA18838-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org> @ 2016-10-12 17:31 ` Leon Romanovsky 0 siblings, 0 replies; 13+ messages in thread From: Leon Romanovsky @ 2016-10-12 17:31 UTC (permalink / raw) To: Jason Gunthorpe Cc: Christoph Hellwig, Bart Van Assche, linux-rdma-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 262 bytes --] On Wed, Oct 12, 2016 at 10:38:34AM -0600, Jason Gunthorpe wrote: > On Wed, Oct 12, 2016 at 03:22:20PM +0300, Leon Romanovsky wrote: > > > Done, applied. > > Are you going to sweep up the rest of the list patches too? Yes, I'll do it tomorrow. Thanks > > Jason [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2016-10-12 17:31 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-10-10 15:28 [PATCH] add a build.sh helper to allow for a one-stop build Christoph Hellwig
[not found] ` <1476113282-19194-1-git-send-email-hch-jcswGhMUV9g@public.gmane.org>
2016-10-10 15:56 ` Bart Van Assche
[not found] ` <c2d80cd4-74b8-8391-1855-3c666f611d91-HInyCGIudOg@public.gmane.org>
2016-10-10 15:59 ` Christoph Hellwig
[not found] ` <20161010155949.GA20091-jcswGhMUV9g@public.gmane.org>
2016-10-10 16:17 ` Bart Van Assche
[not found] ` <ec4f3158-a25d-7cd8-216c-fbec52577e75-HInyCGIudOg@public.gmane.org>
2016-10-10 16:47 ` Jason Gunthorpe
[not found] ` <20161010164758.GB1796-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-10 16:51 ` Christoph Hellwig
[not found] ` <20161010165115.GA8385-jcswGhMUV9g@public.gmane.org>
2016-10-10 17:46 ` Bart Van Assche
2016-10-12 9:30 ` Leon Romanovsky
[not found] ` <20161012093015.GS9282-2ukJVAZIZ/Y@public.gmane.org>
2016-10-12 10:52 ` Christoph Hellwig
[not found] ` <20161012105208.GA9491-jcswGhMUV9g@public.gmane.org>
2016-10-12 12:18 ` Leon Romanovsky
[not found] ` <20161012121845.GT9282-2ukJVAZIZ/Y@public.gmane.org>
2016-10-12 12:22 ` Leon Romanovsky
[not found] ` <20161012122220.GU9282-2ukJVAZIZ/Y@public.gmane.org>
2016-10-12 16:38 ` Jason Gunthorpe
[not found] ` <20161012163834.GA18838-ePGOBjL8dl3ta4EC/59zMFaTQe2KTcn/@public.gmane.org>
2016-10-12 17:31 ` Leon Romanovsky
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).