Please report new issues athttps://github.com/DOCGroup
When we already have a tree in which we build a shared library version of TAO_IDL and then we try to build TAO_IDL statically we still get a version that uses the shared libraries because it seems the existing .so files take precendence over the new .a files. Below how TAO_IDL is linked, the -lTAO_IDL_BE -lTAO_IDL_FE -lACE seems to link in the shared libs when these are available. The only way we now can build statically is when we remove the shared libs first. icpc -wd1684 -w1 -O3 -g -ip -fno-inline -D_REENTRANT -DACE_HAS_AIO_CALLS -fp-model double -DACE_HAS_CUSTOM_EXPORT_MACROS=0 -I/home/build/ACE/static/ACE_wrappers/ -DACE_HAS_EXCEPTIONS -DACE_NO_INLINE -I../.. -Iinclude -Ibe_include -Ife -DACE_AS_STATIC_LIBS -DTAO_IDL_PREPROCESSOR=\"icpc\" -Wl,-E -L/home/build/ACE/static/ACE_wrappers//ace -L./ -L. -L../../lib -o tao_idl .obj/driver/drv_args.o .obj/driver/drv_preproc.o .obj/tao_idl.o libTAO_IDL_BE.a ../../lib/libTAO_IDL_BE.a libTAO_IDL_FE.a ../../lib/libTAO_IDL_FE.a ../../lib/libACE.a -lTAO_IDL_BE -lTAO_IDL_FE -lACE -ldl -lpthread -lrt