This is an automated email from Gerrit. Marek Vasut (marek.va...@gmail.com) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/5413
-- gerrit commit 29c8895cc4000b0aaa2f4c988fd1824195877bed Author: Marek Vasut <marek.va...@gmail.com> Date: Sat Jan 25 19:59:51 2020 +0100 doc: Work around texinfo failure on windows GNU texinfo manual says: 12.3.1 Multiple Spaces ... Occasionally, you may want to produce several consecutive spaces, either for purposes of example (e.g., what your program does with multiple spaces as input), or merely for purposes of appearance in headings or lists. Texinfo supports three commands: @SPACE, @TAB, and @NL, all of which insert a single space into the output. (Here, @SPACE represents an ‘@’ character followed by a space, i.e., ‘@ ’, TAB represents an actual tab character, and @NL represents an ‘@’ character and end-of-line, i.e., when ‘@’ is the last character on a line.) The openocd.texi uses the @NL in three places, and windows build fails on that. This is because on windows, @NL becomes @<LF>, while on UNIX, @NL becomes @<CR><LF> . Work around this by using @SPACE at the end of the line instead, which produces the same output, but works on both UNIX and windows. Change-Id: I062bd55d21304f186eb4ade140fe275e1e6ec118 Signed-off-by: Marek Vasut <marek.va...@gmail.com> diff --git a/doc/openocd.texi b/doc/openocd.texi index cb1c5b7..e67a2f2 100644 --- a/doc/openocd.texi +++ b/doc/openocd.texi @@ -9100,8 +9100,8 @@ Selects whether interrupts will be processed when single stepping @cindex ITM @cindex ETM -@deffn Command {tpiu config} (@option{disable} | ((@option{external} | @option{internal (@var{filename} | -)}) @ - (@option{sync @var{port_width}} | ((@option{manchester} | @option{uart}) @var{formatter_enable})) @ +@deffn Command {tpiu config} (@option{disable} | ((@option{external} | @option{internal (@var{filename} | -)})@ + (@option{sync @var{port_width}} | ((@option{manchester} | @option{uart}) @var{formatter_enable}))@ @var{TRACECLKIN_freq} [@var{trace_freq}])) ARMv7-M architecture provides several modules to generate debugging @@ -9949,7 +9949,7 @@ way to represent JTAG test patterns in text files. In a debug session using JTAG for its transport protocol, OpenOCD supports running such test files. -@deffn Command {svf} @file{filename} [@option{-tap @var{tapname}}] [@option{[-]quiet}] @ +@deffn Command {svf} @file{filename} [@option{-tap @var{tapname}}] [@option{[-]quiet}]@ [@option{[-]nil}] [@option{[-]progress}] [@option{[-]ignore_error}] This issues a JTAG reset (Test-Logic-Reset) and then runs the SVF script from @file{filename}. -- _______________________________________________ OpenOCD-devel mailing list OpenOCD-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/openocd-devel