forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix build issues - fix build order
* Plugin directory renamed to 'p' * Add env.sh to enter into a "radare2 development shell" --HG-- rename : libr/io/plugins/Makefile => libr/io/p/Makefile rename : libr/io/plugins/README => libr/io/p/README rename : libr/io/plugins/dbg.c => libr/io/p/dbg.c rename : libr/io/plugins/malloc.c => libr/io/p/malloc.c rename : libr/io/plugins/ptrace.c => libr/io/p/ptrace.c
- Loading branch information
Showing
9 changed files
with
31 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/bin/sh | ||
|
||
new_env=' | ||
LIBR_PLUGINS=$PATH:$PWD/prefix/lib/radare2 | ||
PATH=$PATH:$PWD/prefix/bin | ||
LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$PWD/prefix/lib | ||
' | ||
|
||
echo | ||
echo "==> Entering radare2 environment shell..." | ||
echo | ||
echo $new_env $SHELL \ | ||
| sed -e 's, ,\n,g' \ | ||
| sed -e 's,^, ,g' \ | ||
| sed -e 's,$,\\,' | ||
echo | ||
|
||
eval $new_env $SHELL | ||
|
||
echo | ||
echo "==> Back to system shell..." | ||
echo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.