Hi There
My Application is having a shared library
made by following commmand
ld -G -lm -lld -lm -lc -ldl -lrpcsvc -bexpall -bnoentry -o abc.so *.o
And my main application was build by
xlc -o main main.o -Wl,-bexpall -brtl
I have some symbols , which are unresolved in the library and cannot
be find even at load time when i use dlopen..
As it used to be in HP and SUN that unresolved symbols are suppressed
at the runtime and i am porting the application from thhe same..
What I want is equivalent in AIX so that unresolved symbols can be
suppressed if not found but documentation says if -brtl is used while
building main application then at the dlopen it will try to resolve
all the symbols i want that it should ignore all unresolved symbols.
Can Anyone help??????????
Thanks and Regards
Anupam Agarwal