question

Upvotes
Accepted
3 1 2 6

libTibMsg.a is missing in the RFA package

I am trying to build my feed using the RFA api. But the package is missing the
libTibMsg.a library. Please let me know if this has been phased out.

treprfarfa-api
icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

@vsharma

Thank you for your participation in the forum. Is the reply below satisfactory in resolving your query? If yes please click the 'Accept' text next to the reply. This will guide all community members who have a similar question. Otherwise please post again offering further insight into your question. Thanks, AHS

1 Answer

· Write an Answer
Upvotes
Accepted
78.8k 250 52 74

I am quite not sure the version of RFA that you are using.

I also couldn't find libTibMsg.a in RFA C++ 7.6.2.L1 Linux package.

In the package, there are libTibMsg.so for the TibMsg shared library and libRFA.a for the RFA static library. For static build, I think that the TibMsg library is in libRFA.a.

Following is the MakeFile used to build the legacy application.

ifeq ($(USE_STATIC),1)
	RFA_LIBS = $(LIB_DIR)/Static/libRFA.a
	EXE_DIR=$(OUTPUT_DIR)/Static
	LN_HOMEPATH=../..
else
	RFA_LIBS = -lRFA_Common -lRFA_Config -lRFA_Logger -lRFA_SessionLayer -lRFA_Adapter -lRFA_Connections -lRFA_Connections_MD -lAnsiPage -lDacs -lwndacs -lTibMsg
	EXE_DIR=$(OUTPUT_DIR)
	LN_HOMEPATH=..
endif

From the MakeFile, you will see that it uses libRFA.a for static build and uses -lTibMsg for linking to the TibMsg shared library.

icon clock
10 |1500

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.

Write an Answer

Hint: Notify or tag a user in this post by typing @username.

Up to 2 attachments (including images) can be used with a maximum of 512.0 KiB each and 1.0 MiB total.