| OLD | NEW |
| 1 #!/bin/sh |
| 2 # |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 3 # Copyright 2013 the V8 project authors. All rights reserved. |
| 2 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 3 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 4 # met: | 6 # met: |
| 5 # | 7 # |
| 6 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 7 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 8 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| 9 # copyright notice, this list of conditions and the following | 11 # copyright notice, this list of conditions and the following |
| 10 # disclaimer in the documentation and/or other materials provided | 12 # disclaimer in the documentation and/or other materials provided |
| 11 # with the distribution. | 13 # with the distribution. |
| 12 # * Neither the name of Google Inc. nor the names of its | 14 # * Neither the name of Google Inc. nor the names of its |
| 13 # contributors may be used to endorse or promote products derived | 15 # contributors may be used to endorse or promote products derived |
| 14 # from this software without specific prior written permission. | 16 # from this software without specific prior written permission. |
| 15 # | 17 # |
| 16 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 18 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
| 17 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 19 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
| 18 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 20 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
| 19 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 21 # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
| 20 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 22 # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 21 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 23 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
| 22 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 24 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
| 23 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 25 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
| 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 26 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 27 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 26 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 28 # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | 29 |
| 28 # Watchlist Rules | 30 if [ "$#" -lt 1 ]; then |
| 29 # Refer: http://dev.chromium.org/developers/contributing-code/watchlists | 31 echo "Usage: tools/cross_build_gcc.sh <GCC prefix> [make arguments ...]" |
| 32 exit 1 |
| 33 fi |
| 30 | 34 |
| 31 # IMPORTANT: The regular expression filepath is tested against each path using | 35 export CXX=$1g++ |
| 32 # re.search, so it is not usually necessary to add .*. | 36 export AR=$1ar |
| 37 export RANLIB=$1ranlib |
| 38 export CC=$1gcc |
| 39 export LD=$1g++ |
| 40 export LINK=$1g++ |
| 33 | 41 |
| 34 { | 42 OK=1 |
| 35 'WATCHLIST_DEFINITIONS': { | 43 if [ ! -x "$CXX" ]; then |
| 36 'public_api': { | 44 echo "Error: $CXX does not exist or is not executable." |
| 37 'filepath': 'include/', | 45 OK=0 |
| 38 }, | 46 fi |
| 39 }, | 47 if [ ! -x "$AR" ]; then |
| 48 echo "Error: $AR does not exist or is not executable." |
| 49 OK=0 |
| 50 fi |
| 51 if [ ! -x "$RANLIB" ]; then |
| 52 echo "Error: $RANLIB does not exist or is not executable." |
| 53 OK=0 |
| 54 fi |
| 55 if [ ! -x "$CC" ]; then |
| 56 echo "Error: $CC does not exist or is not executable." |
| 57 OK=0 |
| 58 fi |
| 59 if [ ! -x "$LD" ]; then |
| 60 echo "Error: $LD does not exist or is not executable." |
| 61 OK=0 |
| 62 fi |
| 63 if [ ! -x "$LINK" ]; then |
| 64 echo "Error: $LINK does not exist or is not executable." |
| 65 OK=0 |
| 66 fi |
| 67 if [ $OK -ne 1 ]; then |
| 68 exit 1 |
| 69 fi |
| 40 | 70 |
| 41 'WATCHLISTS': { | 71 shift |
| 42 'public_api': [ | 72 make snapshot=off $@ |
| 43 'phajdan.jr@chromium.org', | |
| 44 ], | |
| 45 }, | |
| 46 } | |
| OLD | NEW |