sof/scripts/host-build-all.sh

11 lines
151 B
Bash
Executable File

#!/bin/bash
# fail on any errors
set -e
mkdir build_host
cd build_host
cmake -DBUILD_HOST=ON -DCMAKE_INSTALL_PREFIX=install ..
make -j4
make install