sbngross

Results 24 comments of sbngross

It is the other `[DEBUG]` commit [c5771f7](https://github.com/avrdudes/avrdude/pull/1066/commits/c5771f7412efa46a7386cbd4f71a5ed26f685520). Sorry for the confusion. I will reenable it and add the forementioned changes later today (my timezone is UTC+0200). Then I will remove...

Thanks for pointing to the artifact location. I already wondered how to get them. But maybe one has to add the docs to the artifacts too.

>[ 95%] Generating html/Index.html +LOG_FILE=/home/mcuee/build/avr/avrdude_pr1066/build_linux/CMakeFiles/CMakeOutput.log +MAIN_TEXI=avrdude.texi +STYLE_SHEET=avrdude.css +MAKEINFO_BIN=/usr/bin/makeinfo +TYPE=html +OUT_FILE=html +[ -z html ] +[ -z html ] +FMT_ARGS= +FMT_ARGS= --css-include=avrdude.css +exit 0 [100%] Built target doc_html_target It just returns...

macos now somehow builds. At least that awk related stuff. Errors from last build are related to some `makeinfo` and `avrdude.texi` issues AFAIK. From my part the job is done...

You're welcome. >Unfortunately, I have about zero skills with cmake, so it needs someone else on the team to have a look, given that the CI should pass and in...

So the first part seems to work at least on linux. See #1064 For the second part I am digging into `doc/Makefile.am` right now. Could you give me a hint...

Thanks. Works like a charm. I'm now looking into it but I'm not too fluid in `autohell` so it may take a while. For starters I am going to take...

https://github.com/avrdudes/avrdude/compare/main...sbngross:WIP-cmake-docs This is what I came up with so far. The basic idea is to do the actual work in scripts and let `cmake` just handle the dependencies. So the...

Almost there. `makeinfo` is called with correct parameters from the `gen_doc.sh` script. ``` cmake -S avrdude -B build_linux -DCMAKE_INSTALL_PREFIX=/home/brutzzl3r/sandbox/opt -DBUILD_DOC=ON -DCMAKE_BUILD_TYPE=Debug cmake --build build_linux --target doc_target ``` Seems to work...