Dylan Reid | 2470f8c | 2018-04-25 09:48:39 -0700 | [diff] [blame^] | 1 | #!/bin/sh |
2 | |||||
Liam Girdwood | ecdc89d | 2018-02-08 16:25:58 +0000 | [diff] [blame] | 3 | # fail on any errors |
4 | set -e | ||||
5 | |||||
6 | # run autogen.sh | ||||
7 | ./autogen.sh | ||||
8 | |||||
9 | # build all images for all targets. | ||||
10 | pwd=`pwd` | ||||
11 | |||||
12 | # Build library for host platform architecture | ||||
13 | ./configure --with-arch=host --enable-library=yes --host=x86_64-unknown-linux-gnu --prefix=$pwd/../host-root/ | ||||
14 | make | ||||
15 | make install |