Skip to content

Commit 997dda6

Browse files
committedApr 14, 2015
Add support for iOS-simulator and static-OSX builds
1 parent ca6bfba commit 997dda6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

75 files changed

+302
-40
lines changed
 

‎libr/anal/cc.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ R_API boolt r_anal_cc_update (RAnal *anal, RAnalCC *cc, RAnalOp *op) {
193193
{
194194
const char *sp = r_reg_get_name (anal->reg, R_REG_NAME_SP);
195195
const char *esil = r_strbuf_get (&op->esil);
196-
if (esil && strstr (esil, sp)) {
196+
if (esil && sp && strstr (esil, sp)) {
197197
cc->nargs = 0;
198198
}
199199
}

‎libr/asm/p/6502.mk

+2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ OBJ_6502=asm_6502.o
33
STATIC_OBJ+=${OBJ_6502}
44
TARGET_6502=asm_6502.${EXT_SO}
55

6+
ifeq ($(WITHPIC),1)
67
ALL_TARGETS+=${TARGET_6502}
78

89
${TARGET_6502}: ${OBJ_6502}
910
${CC} ${call libname,asm_6502} ${CFLAGS} -o ${TARGET_6502} ${OBJ_6502}
11+
endif

0 commit comments

Comments
 (0)