Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
Dave Barach | 8d0f2f0 | 2018-03-12 09:31:36 -0400 | [diff] [blame] | 3 | # Copyright (c) 2015 Cisco and/or its affiliates. |
| 4 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | # you may not use this file except in compliance with the License. |
| 6 | # You may obtain a copy of the License at: |
| 7 | # |
| 8 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | # |
| 10 | # Unless required by applicable law or agreed to in writing, software |
| 11 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | # See the License for the specific language governing permissions and |
| 14 | # limitations under the License. |
| 15 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 16 | build_root=`pwd` |
| 17 | cd ../ |
| 18 | wsroot=`pwd` |
| 19 | |
| 20 | # PATH |
Ed Warnicke | c28b474 | 2016-02-02 19:28:59 -0800 | [diff] [blame] | 21 | if [[ ! $CCACHE_DIR ]];then |
| 22 | CCACHE_DIR="$build_root/.ccache" |
| 23 | fi |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 24 | ADD_TO_PATH="$build_root/tools/ccache-bin:$build_root/tools/bin" |
| 25 | |
| 26 | # Construct build-config.mk |
| 27 | cd $build_root |
Damjan Marion | 905a7f5 | 2016-07-07 20:27:49 +0200 | [diff] [blame] | 28 | echo SOURCE_PATH = $wsroot > build-config.mk |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 29 | echo |
| 30 | echo Saving PATH settings in `pwd`/path_setup |
| 31 | echo Source this file later, as needed |
| 32 | cat >path_setup <<EOF |
| 33 | #!/bin/bash |
| 34 | |
| 35 | export PATH=$ADD_TO_PATH:$PATH |
| 36 | export CCACHE_DIR=$CCACHE_DIR |
| 37 | EOF |
| 38 | |
| 39 | # regenerate tools/ccache-bin |
| 40 | rm -rf tools/ccache-bin |
| 41 | mkdir -p tools/ccache-bin |
| 42 | |
| 43 | if [ ! -f /usr/bin/ccache ] ; then |
| 44 | echo Please install ccache AYEC and re-run this script |
| 45 | fi |
| 46 | |
| 47 | cd tools/ccache-bin |
| 48 | for c in gcc g++ |
| 49 | do |
| 50 | if [ -f /usr/bin/ccache ] ; then |
| 51 | ln -s /usr/bin/ccache $c |
| 52 | else |
| 53 | ln -s /usr/bin/gcc |
| 54 | fi |
| 55 | done |
| 56 | |
| 57 | cd $wsroot |
| 58 | |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 59 | cd $build_root |
| 60 | echo Compile native tools |
Damjan Marion | 7cd468a | 2016-12-19 23:05:39 +0100 | [diff] [blame] | 61 | for tool in tools |
Ed Warnicke | cb9cada | 2015-12-08 15:45:58 -0700 | [diff] [blame] | 62 | do |
| 63 | make V=0 is_build_tool=yes $tool-install |
| 64 | done |
| 65 | |