• Priest of the Order of the Butterfly
    Priest of the Order of the Butterfly
    eliot
    Posts: 631 from 2004/4/15
    Sorry, I did not use the Makefile.
    But you can build it on your own with cmake:

    Code:

    git clone https://github.com/commonmark/cmark.git
    cd cmark
    makedir build
    cd build
    cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS=-noixemul ../
    cmake --build . --target cmark_exe --config Release
    ...
    src/cmark --version
    cmark 0.31.1 - CommonMark converter
    (C) 2014-2016 John MacFarlane
    ...


    That's all you need to do.

    [ Edited by eliot 02.02.2025 - 07:07 ]
    regards
    eliot
  • »02.02.25 - 07:58
    Profile