top | item 31247445

(no title)

danny0z | 3 years ago

we need pull all submodules, you can see https://xmake.io/#/guide/installation?id=installation

    git submodule update --init
Or you can download full source code from releases. https://github.com/xmake-io/xmake/releases/download/v2.6.5/x...

discuss

order

AlbertoGP|3 years ago

> Or you can download full source code from releases. https://github.com/xmake-io/xmake/releases/download/v2.6.5/x...

Yes, that’s what I did. :-)

    wget https://github.com/xmake-io/xmake/archive/refs/tags/v2.6.5.tar.gz 
    tar xf v2.6.5.tar.gz
    cd xmake-2.6.5/
    make build

danny0z|3 years ago

no, it should be `v2.6.5/xmake-v2.6.5.tar.gz` instead of `tags/v2.6.5.tar.gz`

    https://github.com/xmake-io/xmake/releases/download/v2.6.5/xmake-v2.6.5.tar.gz

danny0z|3 years ago

try

    wget https://github.com/xmake-io/xmake/releases/download/v2.6.5/xmake-v2.6.5.tar.gz
    tar xf xmake-v2.6.5.tar.gz 
    make build
we need not run `cd xmake`