Skip to content
Nguyen Anh Quynh edited this page Feb 24, 2014 · 2 revisions

The latest next code can be directly retrieved from https://github.com/aquynh/capstone/archive/next.zip.

The other way is to get "next" code via git - after you already clone got the whole code from https://github.com/aquynh/capstone.git.

To checkout next branch, simply do this inside the local git repo:

    $ git pull
    $ git checkout next

Then make sure to compile and install new code:

    $ ./make.sh
    $ sudo ./make.sh install

The next branch is frequently updated, so make sure to always get the latest code with:

    $ git pull origin next

Any time you want to get back to master branch, do:

    $ git checkout master