xref: /aosp_15_r20/external/libffi/.travis/build-in-container.sh (revision 1fd5a2e1d639cd1ddf29dd0c484c123bbd850c21)
1#!/bin/bash
2
3cd /opt
4
5export QEMU_LD_PREFIX=/usr/${HOST}
6
7./configure ${HOST+--host=$HOST --disable-shared}
8make
9make dist
10make check RUNTESTFLAGS="-a $RUNTESTFLAGS" || true
11
12
13