blob: a3cb6d08e69f4666f74bc6535098e46a476362c9 [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 \
--prefix "$PREFIX" \
--host "$CROSS_TRIPLE" \
--enable-static \
--disable-shared \
--with-pic \
--enable-fts5 \
--enable-json1 \
--enable-session
make install -j $(nproc)