Embed a mojo ApplicationManager in content/browser
[chromium-blink-merge.git] / third_party / binutils / build-one.sh
blob1ae62d10c7967b533d0353bdab69ac6b44c06d4f
1 #!/bin/sh
2 # Copyright 2014 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 # Script to build binutils found in /build/binutils-XXXX when inside a chroot.
7 # Don't call this script yourself, instead use the build-all.sh script.
9 set -e
11 if [ -z "$1" ]; then
12 echo "Directory of binutils not given."
13 exit 1
16 cd "$1"
17 ./configure --enable-gold=default --enable-threads --enable-plugins \
18 --prefix=/build/output
19 make -j8 all
20 make install