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