From: anonymous c. <nas...@us...> - 2017-05-01 16:07:21
|
> I have -- finally -- released NASM 2.13. Using OS X, the documentation fails to build, with a couple of issues. # git clone git://repo.or.cz/nasm.git nasm # cd nasm # sh autogen.sh # sh configure # make everything ... false -b docbook -d manpage -o nasm.xml nasm.txt make: *** [nasm.xml] Error 1 # make -n everything false -b docbook -d manpage -o nasm.xml nasm.txt false man --skip-validation nasm.xml 2>/dev/null false -b docbook -d manpage -o ndisasm.xml ndisasm.txt false man --skip-validation ndisasm.xml 2>/dev/null cd doc && /Library/Developer/CommandLineTools/usr/bin/make all mkdir -p html for f in nasmdoc.css local.css nasmlogw.png; do cp -ufv "./$f" html/; done /Library/Developer/CommandLineTools/usr/bin/make html/nasmdoc0.html perl -I. ./inslist.pl ./../x86/insns.dat perl -I. ../version.pl docsrc \ < ../version > version.src rm -f html/*.html perl -I. ./rdsrc.pl -I./ -ohtml html nasmdoc.src perl -I. ./inslist.pl ./../x86/insns.dat perl -I. ../version.pl docsrc \ < ../version > version.src perl -I. ./rdsrc.pl -I./ txt nasmdoc.src perl -I. ./rdsrc.pl -I./ dip nasmdoc.src perl -I. ./genps.pl -epsdir "." \ -headps ./head.ps nasmdoc.dip \ > nasmdoc.ps perl -I. ./pspdf.pl nasmdoc.ps nasmdoc.pdf rm nasm.xml ndisasm.xml [not really sure what the nasa.xml problem is] # cd doc # make all mkdir -p html for f in nasmdoc.css local.css nasmlogw.png; do cp -ufv "./$f" html/; done cp: illegal option -- u usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory cp: illegal option -- u usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory cp: illegal option -- u usage: cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file target_file cp [-R [-H | -L | -P]] [-fi | -n] [-apvX] source_file ... target_directory make: *** [html] Error 64 # man cp [confirms that -u isn't supported under OS X] |