mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-27 07:00:30 +00:00
Add sys/tiny.sh - wip
This commit is contained in:
parent
defa323c33
commit
6d96d214d9
92
plugins.tiny.cfg
Normal file
92
plugins.tiny.cfg
Normal file
@ -0,0 +1,92 @@
|
||||
# fs.udf
|
||||
# fs.iso9660
|
||||
# fs.hfsplus
|
||||
# fs.hfs
|
||||
# fs.jfs
|
||||
# do not build : asm.x86_as
|
||||
# do not build : asm.x86_nasm
|
||||
# MIPS="asm.mips_gnu anal.mips_gnu"
|
||||
# MIPS_CS="asm.mips_cs anal.mips_cs"
|
||||
|
||||
STATIC="
|
||||
asm.java
|
||||
asm.arm_cs
|
||||
asm.dalvik
|
||||
asm.mips_cs
|
||||
asm.x86_nz
|
||||
asm.x86_cs
|
||||
asm.gb
|
||||
anal.null
|
||||
anal.x86_cs
|
||||
anal.arm_cs
|
||||
anal.mips_cs
|
||||
anal.java
|
||||
anal.dalvik
|
||||
anal.gb
|
||||
bin.any
|
||||
bin.bios
|
||||
bin.elf
|
||||
bin.elf64
|
||||
bin.java
|
||||
bin.dex
|
||||
bin.pe
|
||||
bin.pebble
|
||||
bin.mz
|
||||
bin.pe64
|
||||
bin.te
|
||||
bin.coff
|
||||
bin.mach0
|
||||
bin.mach064
|
||||
bin.ningb
|
||||
bin.ningba
|
||||
bin.ninds
|
||||
bin.xbe
|
||||
bin_xtr.fatmach0
|
||||
bin_xtr.dyldcache
|
||||
bp.arm
|
||||
bp.bf
|
||||
bp.x86
|
||||
bp.mips
|
||||
core.anal
|
||||
core.java
|
||||
core.yara
|
||||
crypto.aes
|
||||
debug.native
|
||||
debug.esil
|
||||
debug.gdb
|
||||
debug.rap
|
||||
debug.bf
|
||||
egg.exec
|
||||
egg.xor
|
||||
fs.fat
|
||||
fs.ntfs
|
||||
fs.ext2
|
||||
fs.hfs
|
||||
fs.hfsplus
|
||||
fs.reiserfs
|
||||
fs.posix
|
||||
io.debug
|
||||
io.rap
|
||||
io.gzip
|
||||
io.http
|
||||
io.bfdbg
|
||||
io.gdb
|
||||
io.mmap
|
||||
io.default
|
||||
io.self
|
||||
io.mach
|
||||
io.w32
|
||||
io.w32dbg
|
||||
io.malloc
|
||||
io.ihex
|
||||
io.ptrace
|
||||
io.procpid
|
||||
io.shm
|
||||
io.zip
|
||||
lang.vala
|
||||
parse.mreplace
|
||||
parse.att2intel
|
||||
parse.mips_pseudo
|
||||
parse.dalvik_pseudo
|
||||
parse.x86_pseudo"
|
||||
SHARED=""
|
22
sys/tiny.sh
Executable file
22
sys/tiny.sh
Executable file
@ -0,0 +1,22 @@
|
||||
#!/bin/sh
|
||||
# find root
|
||||
cd `dirname $PWD/$0` ; cd ..
|
||||
#TODO: add support for ccache
|
||||
|
||||
# XXX. fails with >1
|
||||
[ -z "${MAKE_JOBS}" ] && MAKE_JOBS=8
|
||||
|
||||
OLD_LDFLAGS="${LDFLAGS}"
|
||||
unset LDFLAGS
|
||||
|
||||
export CC="emcc --ignore-dynamic-linking"
|
||||
export AR="emar"
|
||||
|
||||
CFGFLAGS="./configure --prefix=/usr --without-ewf --without-gmp"
|
||||
|
||||
make mrproper
|
||||
cp -f plugins.tiny.cfg plugins.cfg
|
||||
./configure-plugins
|
||||
|
||||
./configure ${CFGFLAGS} && \
|
||||
make -s -j ${MAKE_JOBS} DEBUG=0
|
Loading…
Reference in New Issue
Block a user