mirror of https://github.com/pyodide/pyodide.git
34 lines
567 B
Python
34 lines
567 B
Python
MAIN_C = r"""
|
|
#include <stdio.h>
|
|
#include <dlfcn.h>
|
|
#include <setjmp.h>
|
|
|
|
void never_called()
|
|
{
|
|
jmp_buf buf;
|
|
int i=setjmp(buf);
|
|
longjmp(buf,1);
|
|
}
|
|
|
|
|
|
int main() {
|
|
puts("hello from main");
|
|
void *handle = dlopen("library.wasm", RTLD_NOW);
|
|
if (!handle) {
|
|
puts("cannot load side module");
|
|
puts(dlerror());
|
|
return 1;
|
|
}
|
|
typedef void (*type_v)();
|
|
type_v side_func = (type_v) dlsym(handle, "foo");
|
|
if (!side_func) {
|
|
puts("cannot load side function");
|
|
puts(dlerror());
|
|
return 1;
|
|
} else {
|
|
side_func();
|
|
}
|
|
return 0;
|
|
}
|
|
"""
|