Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 1 | #! /bin/sh |
| 2 | |
| 3 | # finish-swig-wrapper-classes.sh |
| 4 | # |
| 5 | # For each scripting language liblldb supports, we need to create the |
| 6 | # appropriate Script Bridge wrapper classes for that language so that |
| 7 | # users can call Script Bridge functions from within the script interpreter. |
| 8 | # |
| 9 | # We use SWIG to create a C++ file containing the appropriate wrapper classes |
| 10 | # and funcitons for each scripting language, before liblldb is built (thus |
| 11 | # the C++ file can be compiled into liblldb. In some cases, additional work |
| 12 | # may need to be done after liblldb has been compiled, to make the scripting |
| 13 | # language stuff fully functional. Any such post-processing is handled through |
| 14 | # the shell scripts called here. |
| 15 | |
Caroline Tice | 9dbe717 | 2010-06-16 19:26:52 +0000 | [diff] [blame] | 16 | # SRC_ROOT is the root of the lldb source tree. |
| 17 | # TARGET_DIR is where the lldb framework/shared library gets put. |
| 18 | # CONFIG_BUILD_DIR is where the build-swig-Python-LLDB.sh shell script |
| 19 | # put the lldb.py file it generated from running SWIG. |
| 20 | # PREFIX is the root directory used to determine where third-party modules |
| 21 | # for scripting languages should be installed. |
| 22 | # debug_flag (optional) determines whether or not this script outputs |
| 23 | # additional information when running. |
| 24 | |
| 25 | SRC_ROOT=$1 |
| 26 | TARGET_DIR=$2 |
| 27 | CONFIG_BUILD_DIR=$3 |
| 28 | PREFIX=$4 |
| 29 | debug_flag=$5 |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 30 | |
| 31 | if [ -n "$debug_flag" -a "$debug_flag" == "-debug" ] |
| 32 | then |
| 33 | Debug=1 |
| 34 | else |
| 35 | Debug=0 |
| 36 | fi |
| 37 | |
| 38 | |
| 39 | # |
| 40 | # For each scripting language, see if a post-processing script for that |
| 41 | # language exists, and if so, call it. |
| 42 | # |
| 43 | # For now the only language we support is Python, but we expect this to |
| 44 | # change. |
| 45 | |
| 46 | languages="Python" |
Caroline Tice | 9dbe717 | 2010-06-16 19:26:52 +0000 | [diff] [blame] | 47 | cwd=${SRC_ROOT}/scripts |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 48 | |
| 49 | for curlang in $languages |
| 50 | do |
| 51 | if [ $Debug == 1 ] |
| 52 | then |
| 53 | echo "Current language is $curlang" |
| 54 | fi |
| 55 | |
| 56 | if [ ! -d "$cwd/$curlang" ] |
| 57 | then |
| 58 | echo "error: unable to find $curlang script sub-dirctory" >&2 |
| 59 | continue |
| 60 | else |
| 61 | |
| 62 | if [ $Debug == 1 ] |
| 63 | then |
| 64 | echo "Found $curlang sub-directory" |
| 65 | fi |
| 66 | |
| 67 | cd $cwd/$curlang |
| 68 | |
Caroline Tice | 9dbe717 | 2010-06-16 19:26:52 +0000 | [diff] [blame] | 69 | filename="./finish-swig-${curlang}-LLDB.sh" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 70 | |
| 71 | if [ -f $filename ] |
| 72 | then |
| 73 | if [ $Debug == 1 ] |
| 74 | then |
Caroline Tice | 9dbe717 | 2010-06-16 19:26:52 +0000 | [diff] [blame] | 75 | echo "Found $curlang post-processing script for LLDB" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 76 | echo "Executing $curlang post-processing script..." |
| 77 | fi |
| 78 | |
Caroline Tice | 9dbe717 | 2010-06-16 19:26:52 +0000 | [diff] [blame] | 79 | |
| 80 | ./finish-swig-${curlang}-LLDB.sh $SRC_ROOT $TARGET_DIR $CONFIG_BUILD_DIR "${PREFIX}" "${debug_flag}" |
Chris Lattner | 24943d2 | 2010-06-08 16:52:24 +0000 | [diff] [blame] | 81 | fi |
| 82 | fi |
| 83 | done |
| 84 | |
| 85 | exit 0 |