radare2/swig/check-langs.sh
pancake 3da650d4b1 * Write and install manpages
* Merge r_trace into r_debug (RDebugTrace)
  - Implement 'dt' command to manage debugging traces
  - TODO: Track register values and memory changes
  - Added dbg.trace and dbg.trace.tag
* Added r_sys_now() to retrieve ut64 value of current time
  - Must check endianness issues
* Initial work trying to implement RPATH support to ELF
* Less flat command tree
  - 'dt' is now 'dbt'
  - 'dk' is now 'dpk'
* Some more random syntax cleanup fixes
* Say 'yes/no' instead of 'ok/fail' in check-langs script
2010-03-12 18:46:11 +01:00

19 lines
322 B
Bash
Executable File

#!/bin/sh
SUP_LANGS=""
LANGS="python perl ruby lua"
for a in ${LANGS}; do
printf "Checking $a support for valaswig... "
valaswig-cc --test $a
if [ $? = 0 ]; then
echo yes
SUP_LANGS="$a ${SUP_LANGS}"
else
echo no
fi
done
:> supported.langs
for a in ${SUP_LANGS}; do
echo $a >> supported.langs
done