File size: 259 Bytes
05c9ac2 |
1 2 3 4 5 6 7 8 9 10 11 |
// These stubs fix an issue compiling GRPC on Windows with IL2CPP.
// For the moment, only Inference works. (training doesn't)
void * dlopen(const char *filename, int flags) {
return 0;
}
void * dlsym(void *handle, const char *symbol) {
return 0;
}
|