3.47. libffi-3.4.2

#!/bin/sh
# Copyright © 1999-2022 Gerard Beekmans
# Copyright © 2020-2022 Random Crew
# Distributed under the terms of MIT License.

Configuration

Variable ANYARCHMODE contains basic hardware architecture. For 64-bit intel series it would be x86_64. The option is given to configure to build portable package.

src_config()
{
    ./configure \
        --prefix=${PREFIX} \
        --disable-static \
        --with-gcc-arch=${ANYARCHMODE} \
        --disable-exec-static-tramp
}

Compilation

src_compile()
{
    make ${MAKEOPTS}
}

Installation

src_install()
{
    make install ${MAKEOPTS} DESTDIR=${D}
}

Unit testing

src_check()
{
    make check
}

Build code

libffi.build

Other files

meta.txt
text

Links

url.lfs: https://linuxfromscratch.org/lfs/view/11.0/chapter08/libffi.html
url.lfs.stage1: