blob: 4c316da999d264ad99c5f68c120f5e053c58078d [file] [log] [blame]
Dylan Reid2470f8c2018-04-25 09:48:39 -07001#!/bin/sh
2
Liam Girdwoodecdc89d2018-02-08 16:25:58 +00003# fail on any errors
4set -e
5
6# run autogen.sh
7./autogen.sh
8
9# build all images for all targets.
10pwd=`pwd`
11
12# Build library for host platform architecture
Ranjani Sridharan28bddad2018-05-10 21:02:57 -070013./configure --with-arch=host --enable-library=yes --host=x86_64-unknown-linux-gnu
Liam Girdwoodecdc89d2018-02-08 16:25:58 +000014make
15make install