Closed mikucionisaau closed 1 week ago
The Could not find cpp/string/basic_string_view/begin_end_nonmem
message is due to missing std::begin(std::basic_string_view)
non-member function on std::basic_string_view page (I have added those on cppreference.com, so hopefully they will appear in the index next time)
Thanks for the report and PR. I'll have a look at the PR when I do the next release, could take a couple of days though.
HTML WARN: output/reference/en/c/language/operator_arithmetic.html:650:6:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : li HTML WARN: output/reference/en/c/language/operator_arithmetic.html:650:11:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : ul HTML WARN: output/reference/en/c/language/operator_arithmetic.html:651:6:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : dd HTML WARN: output/reference/en/c/language/operator_arithmetic.html:651:11:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : dl HTML WARN: output/reference/en/c/language/operator_arithmetic.html:656:6:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : li HTML WARN: output/reference/en/c/language/operator_arithmetic.html:656:11:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : ul HTML WARN: output/reference/en/c/language/operator_arithmetic.html:657:6:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : dd HTML WARN: output/reference/en/c/language/operator_arithmetic.html:657:11:ERROR:HTML:ERR_TAG_NAME_MISMATCH: Unexpected end tag : dl
Those are harmless, BTW. They're caused by MediaWiki generating invalid HTML sometimes. I briefly looked at how to fix it, but I don't know enough about MediaWiki unfortunately.
I was wondering if there is a shorthand to install only the devhelp pages: make doc_devhelp
seem to produce them but make install
seem to trigger make all
which consumes a lot of CPU-time.
Basically, is make all
a necessary step if I am interested only in devhelp pages?
Hm, I don't use the Makefile for installation, but I guess it installs everything? If so, then it needs to build everything of course.
I guess an install
target for the different kinds of output could make sense.
I am primarily interested in
devhelp
documentation on Debian/Linux.Here is what I tried:
Which quickly gave me the following messages at the end:
The returned status is
0
so it looks like "success", but I am not sure what to make of those messages.Then
make -j$(nproc) all
took quite some time andsudo make install
, but both succeeded without warning or error messages, so that looks like a success.However, if I look for any of the items reported above then
devhelp
seems to find them in the index, but not their content:So something is missing.
The online version operator""sv has ben modified on
21 September 2021, at 08:42
so this is not exactly new. I would appreciate any pointers where to look for a fix.Here is how
special_math
link is represented inoutput/link_map.xml
:Online there are two versions of special math functions:
So this is not important.
Another page: cpp/header/contract has been deleted (probably in favor of
concepts
), so this is also not important.Then
operator""sv
and similar operators are very handy, but there seems to be an issue with escaping quotes resulting in the following line inoutput/link_map.xml
:which is produced by
build_link_map.py
, where the regular expression on line 51 fails to capture escaped quotes:therefore should be replaced with:
Then the escaped quotes need to be replaced with plain quotes after line 55:
Then the produced
output/link_map.xml
contains"e;
instead of quote character which is correct xml. Then recompile, install and then it works!