Are you using xlc to link? If so, try linking with xlC. The missing symbols are from the XL C/C++ personality routines library libibmc++.so. The xlC invocation command links it in by default. Alternatively, you can link in the library manually by adding:
-L/opt/ibm/xlC/16.1.1/lib -R/opt/ibm/lib -libmc++
to your link line. If you don't want your binary to depend on the IBM libibmc++.so library, you can statically link it in by linking with xlC and adding -qstaticlink=xllibs.
--------------------------------------------------------------
Answered by Rafik_Zurob on Feb.17, 2018
---------------------------------------------------------------