mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-23 21:29:49 +00:00
8fbe0be140
without PIC code (only static libraries, and link binaries) - Fix linking order dependencies * Fix some missing EXT_EXE * Add some definitions to make debug_ptrace register work on Solaris and *BSD (no windows yet) - Some fixes for mips, x86, x86-64, arm and powerpc * Initial import of rsc2 - Added intel2att rsc2 sample script
14 lines
223 B
Makefile
14 lines
223 B
Makefile
CC=tcc
|
|
LINK=
|
|
CC_AR=ar -r ${LIBAR}
|
|
PIC_CFLAGS+=-fPIC
|
|
CC_LIB=${CC} -shared -o ${LIBSO}
|
|
CFLAGS_INCLUDE=-I
|
|
LDFLAGS_LINK=-l
|
|
LDFLAGS_LINKPATH=-Wl,-R
|
|
CFLAGS_OPT0=-O0
|
|
CFLAGS_OPT1=-O1
|
|
CFLAGS_OPT2=-O2
|
|
CFLAGS_OPT3=-O3
|
|
CFLAGS_DEBUG=-g
|