mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 10:16:21 +00:00
3da650d4b1
* 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
19 lines
322 B
Bash
Executable File
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
|