Where is the x86-64 System V ABI documented?

前端 未结 3 2231
春和景丽
春和景丽 2020-11-22 04:26

The x86-64 System V ABI (used on everything except Windows) used to live at http://x86-64.org/documentation/abi.pdf, but that site has now fallen off the internet.

I

3条回答
  •  北荒
    北荒 (楼主)
    2020-11-22 05:03

    The current version of the System V ABI from GitLab can be easily turned into a nice PDF with these steps, assuming an Ubuntu system.

    sudo apt-get install texlive-full
    git clone https://gitlab.com/x86-psABIs/x86-64-ABI
    cd x86-64-ABI
    make pdf
    

    This will produce a file called abi.pdf which is the very one that is needed, as below.

    Note that the date in the title appears to be the PDF's build date rather than the document's actual last modification date.

提交回复
热议问题