mirror of
https://github.com/scottlamb/moonfire-nvr.git
synced 2024-12-26 07:05:56 -05:00
6ed23e90e8
* support cross-compiling an x86-64 target on an arm64 host. This it turns out is a matter of *removing* an unnecessary dependency. (aarch64-linux-gnu-pkg-config exists but x86_64-linux-gnu-pkg-config doesn't. Turns out neither is necessary.) Added a comment explaining where ${gcc_target}-pkg-config comes from now. * documentation tweaks * improve debug output a bit
38 lines
1.3 KiB
Bash
Executable File
38 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# This file is part of Moonfire NVR, a security camera network video recorder.
|
|
# Copyright (C) 2021 The Moonfire NVR Authors; see AUTHORS and LICENSE.txt.
|
|
# SPDX-License-Identifier: GPL-v3.0-or-later WITH GPL-3.0-linking-exception.
|
|
|
|
# Build the "build-server" target. See Dockerfile.
|
|
|
|
set -o errexit
|
|
set -o pipefail
|
|
set -o xtrace
|
|
|
|
mkdir /docker-build-debug/build-server
|
|
exec > >(tee -i /docker-build-debug/build-server/output) 2>&1
|
|
date
|
|
uname -a
|
|
find /cargo-cache -ls > /docker-build-debug/build-server/cargo-cache-before
|
|
find ~/target -ls > /docker-build-debug/build-server/target-before
|
|
|
|
source ~/.buildrc
|
|
|
|
# The "mode" argument to cache mounts doesn't seem to work reliably
|
|
# (as of Docker version 20.10.5, build 55c4c88, using a docker-container
|
|
# builder), thus the chmod command.
|
|
sudo chmod 777 /cargo-cache /var/lib/moonfire-nvr/target
|
|
mkdir -p /cargo-cache/{git,registry}
|
|
ln -s /cargo-cache/{git,registry} ~/.cargo
|
|
|
|
build_profile=release-lto
|
|
cd src/server
|
|
time cargo test
|
|
time cargo build --profile=$build_profile
|
|
find /cargo-cache -ls > /docker-build-debug/build-server/cargo-cache-after
|
|
find ~/target -ls > /docker-build-debug/build-server/target-after
|
|
sudo install -m 755 \
|
|
~/platform-target/$build_profile/moonfire-nvr \
|
|
/usr/local/bin/moonfire-nvr
|
|
date
|