linker
Limiting visibility of symbols when linking shared libraries
GNU ld can do that on ELF platforms. Here is how to do it with a linker version script: /* foo.c */ int foo() { return 42; } int bar() { return foo() + 1; } int baz() { return bar() – 1; } gcc -fPIC -shared -o libfoo.so foo.c && nm -D libfoo.so | … Read more
How do i clear this issue? unable to compile? [closed]
No one here can see what program is really being executed in the LKED step for which you have the SYSLMOD override, but it’s probably IEWL (the binder, known in ancient times as the Linkage Editor). No one here can see what the attributes of your IBMUSER.RKSH.LOAD dataset are, but it must have RECFM=U. No … Read more