Skip to content

Commit

Permalink
Revert jsig.c change as it breaks zOS
Browse files Browse the repository at this point in the history
```
ERROR CCN3191 ./jsig.c:78    The character # is not a valid C source character.
```
Not sure why yet but reverting this unblocks other platforms.

Signed-off-by: Dan Heidinga <[email protected]>
  • Loading branch information
DanHeidinga committed Aug 27, 2018
1 parent 003331b commit abf344d
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 abf344d

Please sign in to comment.