mirror of
https://github.com/Proxmark/proxmark3.git
synced 2025-07-14 09:13:01 -07:00
CHG: removed leftover debugging statements proxmark3.c
CHG: hint from Marshmellow that the flag "-lcrypto" needs be also in CFLAGS.
This commit is contained in:
parent
4888b28195
commit
002c1ce57a
2 changed files with 1 additions and 4 deletions
|
@ -15,7 +15,7 @@ OBJDIR = obj
|
||||||
|
|
||||||
LDLIBS = -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lreadline -lpthread -lm -lcrypto
|
LDLIBS = -L/opt/local/lib -L/usr/local/lib ../liblua/liblua.a -lreadline -lpthread -lm -lcrypto
|
||||||
LDFLAGS = $(COMMON_FLAGS)
|
LDFLAGS = $(COMMON_FLAGS)
|
||||||
CFLAGS = -std=c99 -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4
|
CFLAGS = -std=c99 -lcrypto -I. -I../include -I../common -I/opt/local/include -I../liblua -Wall $(COMMON_FLAGS) -g -O4
|
||||||
LUAPLATFORM = generic
|
LUAPLATFORM = generic
|
||||||
|
|
||||||
ifneq (,$(findstring MINGW,$(platform)))
|
ifneq (,$(findstring MINGW,$(platform)))
|
||||||
|
|
|
@ -144,12 +144,9 @@ static void *main_loop(void *targ) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!script_file) {
|
if (!script_file) {
|
||||||
PrintAndLog("FOO!!");
|
|
||||||
cmd = readline(PROXPROMPT);
|
cmd = readline(PROXPROMPT);
|
||||||
PrintAndLog("BAR!!");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
PrintAndLog("SNAFU!!");
|
|
||||||
if (cmd) {
|
if (cmd) {
|
||||||
|
|
||||||
while(cmd[strlen(cmd) - 1] == ' ')
|
while(cmd[strlen(cmd) - 1] == ' ')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue