Displaying 20 results from an estimated 11000 matches similar to: "[LLVMdev] C++ Parser (Was: Call for Volunteers: the Synopsis project)"
2006 Aug 23
6
Looking for volunteers (no C++ knowledge needed!)
I just posted a follow-up to our bug that old SWIG versions are not
properly detected, leading to unclear failure messages:
---
Actually, this just got a lot simpler. We used to support both 1.3.25+
and 1.3.24-, so we had to do both kinds of detection. Now, we REQUIRE
1.3.29, and therefore any SWIG that can''t give us its version number the
new way is automatically too old.
We can get
2018 Aug 18
2
[PATCH v2] build: Build synopsis.c before main.c
How about this variation of your patch? It fixes the
problem from a fresh git checkout for me.
Rich.
2018 Aug 18
1
Re: [PATCH v2] build: Build synopsis.c before main.c
On Sun, Aug 19, 2018 at 12:43 AM Richard W.M. Jones <rjones@redhat.com>
wrote:
> From: Nir Soffer <nirsof@gmail.com>
>
> synopsis.c was defined as dependency of the nbdkit program, but it
> should be define as dependency of main.c. Otherwise "make" fail with:
>
> main.c:180:10: fatal error: synopsis.c: No such file or directory
> #include
2018 Aug 18
2
[PATCH] build: Build synopsis.c before main.c
synopsis.c was defined as dependency of the nbdkit program, but it
should be define as dependency of main.c. Otherwise "make" fail with:
main.c:180:10: fatal error: synopsis.c: No such file or directory
#include "synopsis.c"
^~~~~~~~~~~~
Fixes commit 445e18f3dbb2 (src, docs: Generate the nbdkit command
synopsis from a single source).
---
src/Makefile.am | 2 +-
1
2018 Aug 18
0
[PATCH v2] build: Build synopsis.c before main.c
From: Nir Soffer <nirsof@gmail.com>
synopsis.c was defined as dependency of the nbdkit program, but it
should be define as dependency of main.c. Otherwise "make" fail with:
main.c:180:10: fatal error: synopsis.c: No such file or directory
#include "synopsis.c"
^~~~~~~~~~~~
Fixes commit 445e18f3dbb2 (src, docs: Generate the nbdkit command
synopsis from a
2018 Dec 06
0
[PATCH nbdkit 1/5] src: Mark synopsis.c as BUILT_SOURCES.
---
src/Makefile.am | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/Makefile.am b/src/Makefile.am
index 3490c0f..65f9498 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -80,6 +80,7 @@ nbdkit_LDFLAGS = \
# synopsis.c is generated from docs/synopsis.txt where it is also
# used to generate the man page. It is included in main.c.
+BUILT_SOURCES = synopsis.c
EXTRA_DIST = synopsis.c
2018 Dec 07
1
Re: [PATCH nbdkit 1/5] src: Mark synopsis.c as BUILT_SOURCES.
On 12/6/18 3:50 PM, Richard W.M. Jones wrote:
> ---
> src/Makefile.am | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/src/Makefile.am b/src/Makefile.am
> index 3490c0f..65f9498 100644
> --- a/src/Makefile.am
> +++ b/src/Makefile.am
> @@ -80,6 +80,7 @@ nbdkit_LDFLAGS = \
> # synopsis.c is generated from docs/synopsis.txt where it is also
> # used to
2014 Dec 01
0
Re: [PATCH] fish: show synopsis if command syntax is wrong
On Mon, Dec 01, 2014 at 10:25:51AM +0800, Hu Tao wrote:
> On Fri, Nov 28, 2014 at 03:00:39PM +0100, Pino Toscano wrote:
> > On Friday 28 November 2014 17:55:51 Hu Tao wrote:
> > > This patch lets guestfish show command synopsis if the syntax of command issued
> > > by user is wrong, rather than telling user that the number of parameters is wrong.
> >
> > The
2014 Nov 28
0
Re: [PATCH] fish: show synopsis if command syntax is wrong
On Friday 28 November 2014 17:55:51 Hu Tao wrote:
> This patch lets guestfish show command synopsis if the syntax of command issued
> by user is wrong, rather than telling user that the number of parameters is wrong.
The idea seems sound to me.
Shouldn't that be done also for fish commands? If so, just make
"synopsis" a function taking args and optargs, and use it in both
2016 Jan 02
0
[PATCH] customize: Document missing command line parameters in the synopsis.
I noticed that the --attach option was not covered in the synopsis.
This commit documents all of the missing command line parameters in
the synopsis.
---
customize/virt-customize.pod | 11 +++++++++--
1 file changed, 9 insertions(+), 2 deletions(-)
diff --git a/customize/virt-customize.pod b/customize/virt-customize.pod
index 3fe9050..8fb9931 100644
--- a/customize/virt-customize.pod
+++
2005 May 08
0
[Bug 2690] New: SYNOPSIS "rsync [OPTION]... SRC [SRC]... DEST" incorrect
https://bugzilla.samba.org/show_bug.cgi?id=2690
Summary: SYNOPSIS "rsync [OPTION]... SRC [SRC]... DEST" incorrect
Product: rsync
Version: 2.6.4
Platform: All
URL: http://rsync.samba.org/ftp/rsync/rsync.html
OS/Version: All
Status: NEW
Severity: trivial
Priority: P3
Component: core
2014 Dec 01
1
Re: [PATCH] fish: show synopsis if command syntax is wrong
On Mon, Dec 01, 2014 at 02:42:54PM +0800, Hu Tao wrote:
> On Mon, Dec 01, 2014 at 10:25:51AM +0800, Hu Tao wrote:
> > On Fri, Nov 28, 2014 at 03:00:39PM +0100, Pino Toscano wrote:
> > > On Friday 28 November 2014 17:55:51 Hu Tao wrote:
> > > > This patch lets guestfish show command synopsis if the syntax of command issued
> > > > by user is wrong, rather
2014 Dec 01
0
Re: [PATCH v2] fish: show synopsis if command syntax is wrong
How about the following? I've made it use a named value
(RUN_WRONG_ARGS == -2) instead of just the magic number.
Also I removed an incorrect hunk from the original patch (space before
synopsis string is required).
Rich.
--
Richard Jones, Virtualization Group, Red Hat http://people.redhat.com/~rjones
Read my programming and virtualization blog: http://rwmj.wordpress.com
virt-top is
2014 Dec 01
2
Re: [PATCH] fish: show synopsis if command syntax is wrong
On Fri, Nov 28, 2014 at 03:00:39PM +0100, Pino Toscano wrote:
> On Friday 28 November 2014 17:55:51 Hu Tao wrote:
> > This patch lets guestfish show command synopsis if the syntax of command issued
> > by user is wrong, rather than telling user that the number of parameters is wrong.
>
> The idea seems sound to me.
>
> Shouldn't that be done also for fish commands?
2012 Jan 23
1
patch: Shouldn't the synopsis of upsmon.8 mention the -K flag?
--- upsmon.8 2012-01-23 11:52:34.000000000 +0200
+++ upsmon.8.mod 2012-01-23 11:53:27.000000000 +0200
@@ -35,7 +35,7 @@ upsmon \- UPS monitor and shutdown contr
.sp
\fBupsmon\fR \-c \fIcommand\fR
.sp
-\fBupsmon\fR [\-D] [\-p] [\-u \fIuser\fR]
+\fBupsmon\fR [\-D] [\-K] [\-p] [\-u \fIuser\fR]
.SH "DESCRIPTION"
.sp
\fBupsmon\fR is the client process that is responsible for
2024 Oct 18
1
[PATCH] ssh.1: balance square brackets in the synopsis
I noticed the square brackets in `destination [command [argument...]`
were not balanced, this balances them.
Signed-off-by: Arnout Engelen <arnout at bzzt.net>
---
ssh.1 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ssh.1 b/ssh.1
index 710d3d4e6..f3e5f3115 100644
--- a/ssh.1
+++ b/ssh.1
@@ -65,7 +65,7 @@
.Op Fl W Ar host : Ns Ar port
.Op Fl w Ar local_tun Ns Op : Ns
2024 Oct 19
1
[PATCH] ssh.1: balance square brackets in the synopsis
Arnout Engelen:
> I noticed the square brackets in `destination [command [argument...]`
> were not balanced,
But they are. Not only with mandoc(1), but also with groff(1).
destination [command [argument ...]]
--
Christian "naddy" Weisgerber naddy at mips.inka.de
2014 Dec 02
1
Re: [PATCH v2] fish: show synopsis if command syntax is wrong
On Mon, Dec 01, 2014 at 06:01:25PM +0000, Richard W.M. Jones wrote:
>
> How about the following? I've made it use a named value
> (RUN_WRONG_ARGS == -2) instead of just the magic number.
Yes, it looks better!
>
> Also I removed an incorrect hunk from the original patch (space before
> synopsis string is required).
The space before synopsis makes the text of synopsis
2001 Jun 30
0
ogg123 synopsis and man page fixes
The output of ogg123 -h and the man page should be updated to
document the devices currently available through libao. (Those
extraneous carriage returns in ogg123.1 suck, btw.)
--- ogg123/ogg123.1.orig Sat Jun 30 14:48:43 2001
+++ ogg123/ogg123.1 Sat Jun 30 15:02:46 2001
@@ -76,7 +76,7 @@ written to
output overhead.
.IP oss
-Open Sound System driver for Linux and {Net,Free,Open}BSD.
+Open
2014 Nov 28
2
[PATCH] fish: show synopsis if command syntax is wrong
This patch lets guestfish show command synopsis if the syntax of command issued
by user is wrong, rather than telling user that the number of parameters is wrong.
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
fish/cmds-gperf.h | 1 +
generator/fish.ml | 33 ++++++++++++---------------------
2 files changed, 13 insertions(+), 21 deletions(-)
diff --git a/fish/cmds-gperf.h