|
|
|
|
|
by u2zv1wx
2212 days ago
|
|
What you need are the two functions `malloc` and `free` that have the following signatures: declare i8* @malloc(i64)
declare void @free(i8*)
So if you have implementations of them written in LLVM IR, I think that's enough.Disclaimer: I'm not very good at low-layer concepts. Correct me if I'm wrong here. |
|
int main(void) { return 0; }
If it’s just providing free/malloc symbols, that’s wonderful!