在调整错误中增加内存
Increase memory in tweak error
我试过在我的越狱工具中这样使用jetslammed,但是遇到了一个不知道从哪里来的错误。请任何人看一看,这是我的代码:
char *x = (char *)"testoll";
jetslammed_updateWaterMark(1024, x);
这是错误:
Undefined symbols for architecture armv7:
"jetslammed_updateWaterMark(int, char*)", referenced from:
_main in main.mm.f37d78b2.o
ld: symbol(s) not found for architecture armv7
P/S:我已经链接了 jetslammed 库并包含 jetslammed.h。
您正在像处理 C++ 符号一样处理 C 符号。您需要像这样包含 C header:
extern "C" {
#include <jetslammed.h>
}
我试过在我的越狱工具中这样使用jetslammed,但是遇到了一个不知道从哪里来的错误。请任何人看一看,这是我的代码:
char *x = (char *)"testoll";
jetslammed_updateWaterMark(1024, x);
这是错误:
Undefined symbols for architecture armv7:
"jetslammed_updateWaterMark(int, char*)", referenced from:
_main in main.mm.f37d78b2.o
ld: symbol(s) not found for architecture armv7
P/S:我已经链接了 jetslammed 库并包含 jetslammed.h。
您正在像处理 C++ 符号一样处理 C 符号。您需要像这样包含 C header:
extern "C" {
#include <jetslammed.h>
}