blob: ce4191f53a3ecdd9b0ea9cb11fcfcc171a0e7049 [file] [log] [blame]
#!/bin/bash
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set -e
set -x
set -o pipefail
PREFIX="$1"
./configure --disable-shared \
--prefix "$PREFIX" \
--host "$CROSS_TRIPLE"
make install -j $(nproc)