Merge branch 'devel' into another-channel-fix

This commit is contained in:
Araq
2017-01-31 13:26:14 +01:00
2 changed files with 5 additions and 10 deletions

View File

@@ -100,7 +100,7 @@ path="$lib/pure"
@if windows:
#gcc.path = r"$nim\dist\mingw\bin"
@if gcc:
#tlsEmulation:on
tlsEmulation:on
@end
@end
@@ -110,13 +110,7 @@ path="$lib/pure"
gcc.options.always = "-w"
gcc.cpp.options.always = "-w -fpermissive"
@else:
@if cpu32:
gcc.options.always = "-w -m32"
gcc.options.linker = "-m32"
@else:
gcc.options.always = "-w -m64"
gcc.options.linker = "-m64"
@end
gcc.options.always = "-w"
gcc.cpp.options.always = "-w -fpermissive"
@end

View File

@@ -322,11 +322,12 @@ proc buildPdfDoc(c: var TConfigData, destPath: string) =
if os.execShellCmd("pdflatex -version") != 0:
echo "pdflatex not found; no PDF documentation generated"
else:
const pdflatexcmd = "pdflatex -interaction=nonstopmode "
for d in items(c.pdf):
exec(findNim() & " rst2tex $# $#" % [c.nimArgs, d])
# call LaTeX twice to get cross references right:
exec("pdflatex " & changeFileExt(d, "tex"))
exec("pdflatex " & changeFileExt(d, "tex"))
exec(pdflatexcmd & changeFileExt(d, "tex"))
exec(pdflatexcmd & changeFileExt(d, "tex"))
# delete all the crappy temporary files:
let pdf = splitFile(d).name & ".pdf"
let dest = destPath / pdf