07540f5f44
This makes e.g. './build-magenta-x86-64 USE_CLANG=true' do what's expected. Silently ignoring arguments to the script is probably surprising. Change-Id: Ie48a71788deb1b644aa0e1c9b8bc3129358402c8
14 linhas
342 B
Bash
Arquivo Executável
14 linhas
342 B
Bash
Arquivo Executável
#!/usr/bin/env bash
|
|
|
|
# Copyright 2016 The Fuchsia Authors
|
|
#
|
|
# Use of this source code is governed by a MIT-style
|
|
# license that can be found in the LICENSE file or at
|
|
# https://opensource.org/licenses/MIT
|
|
|
|
export PROJECT=magenta-qemu-arm64
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
$DIR/make-parallel -C $DIR/.. $PROJECT "$@"
|