Skip to content

Commit

Permalink
Merge pull request #2716 from DanHeidinga/djh/jsig
Browse files Browse the repository at this point in the history
Revert jsig.c change as it breaks zOS
  • Loading branch information
gacholio authored Aug 27, 2018
2 parents 4757495 + abf344d commit 0895044
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions runtime/jsigWrapper/jsig.c
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,7 @@ getFunction(void **tableAddress, char *name)
void *handle = dlopen("libomrsig.so", RTLD_LAZY);
*tableAddress = dlsym(handle, name);
#else /* defined(WIN32) */
void *handle = dlopen(
#if defined(OSX)
"libomrsig.dylib"
#else /* OSX */
"libomrsig.so"
#endif /* OSX */
, RTLD_GLOBAL | RTLD_LAZY);
void *handle = dlopen("libomrsig.so", RTLD_GLOBAL | RTLD_LAZY);
*tableAddress = dlsym(handle, name);
#endif /* defined(WIN32) */
}
Expand Down

0 comments on commit 0895044

Please sign in to comment.