the issue was when using a number of parameter greater than 9. For
example, to evaluate the 10th param, the substution was $10, but this
was interpreted as $1 + 0, so the issue radare20. Using ${10} should fix
the issue.
PKG_CONFIG_PATH was definitely being set incorrectly, as radare2-binding's configure script was complaining about not finding r_core via pkg-config.
I wasn't noticing any issues related to DYLD_LIBRARY_PATH, but it looked like it was clobbering the old value of it with LD_LIBRARY_PATH, rather than just prepending the new value.
- env.sh now also uses DYLD_LIBRARY_PATH
- Fixes in ollyasm/dis to link with no global variables
- Remove double definition of global _state
- Same for asm_java
- Split -shared and -Wl,-R into LDFLAGS_{LIB|LINKPATH}
- Fixes linkage in osx
- anal_x86_bea plugin now links correctly against BeaEgine.o
- dietline is now #include'd from line.c
- no debugger support yet
- Do not externalize any variable. Some linkage does not support it
* Remove bininfo dependency .. aims to be merged into bin soon
* Added r_str_case() method to change to lower/upper case a string
* Initial implementation of the visual mode in core
* Added pc and ps print formats (c code and string)
* Added '/' command in core (search hexa and str)
* Add '-d' to radare2 test program
* New r_file_path to resolve file path thru $PATH
* 'make install' works everywhere