Home | History | Annotate | Download | only in scripts

Lines Matching refs:SWIG

3 # build-swig-wrapper-classes.sh
9 # We use SWIG to help create the appropriate wrapper classes/functions for
10 # the scripting language. In some cases the file generated by SWIG may
18 # CONFIG_BUILD_DIR is where the build-swig-Python-LLDB.sh shell script
19 # put the lldb.py file it was generated from running SWIG.
48 # if the caller wants swig to generate a dependency file.
68 # Verify that 'lldb.swig' exists.
71 if [ ! -f ${SRC_ROOT}/scripts/lldb.swig ]
73 echo Error: unable to find file 'lldb.swig' >&2
79 echo "Found lldb.swig file"
83 # Next look for swig
86 SWIG=`which swig`
87 if [ ! -x "$SWIG" -a -f /usr/bin/swig ]
89 SWIG=/usr/bin/swig
91 if [ -f /usr/local/bin/swig ]
93 SWIG=/usr/local/bin/swig
97 if [ ${SWIG}a = a ]
99 echo Error: could not find the swig binary
133 filename="./build-swig-${curlang}.sh"
137 echo "Error: unable to find swig build script for $curlang: $filename" >&2
147 ./build-swig-${curlang}.sh "$SRC_ROOT" "$TARGET_DIR" "$CONFIG_BUILD_DIR" "${PREFIX}" "${debug_flag}" "${SWIG}" "${makefile_flag}" "${dependency_flag}" || exit $?