Jump to content

libsystemc-2.3.3.so cannot open shared object file


kallooran

Recommended Posts

Hello @kallooran,

Can you post the command line you are using to build your models with?

Also, if possible share the following environment variable also:

echo $SYSTEMC_HOME
echo $LD_LIBRARY_PATH

Currently with the title above is not enough to provide an educated guess about the environment you are using.

Regards,

Ameya Vikram Singh

Edited by AmeyaVS
Added section about the envrionment details also.
Link to comment
Share on other sites

Hello @kallooran,

Try setting the environment variable LD_LIBRARY_PATH as mentioned below:

export LD_LIBRARY_PATH=$SYSTEMC_HOME/lib-linux64
# or this if the library containing the libsystemc.so is under $SYSTEMC_HOME/lib
# export LD_LIBRARY_PATH=$SYSTEMC_HOME/lib

Also what is the command line used to build the project? (Example as mentioned below)

# e.g.:
# Compilation
$ g++ -Wall -g -I$SYSTEMC_HOME/include -c main.cpp
# Linking
$ g++ main.o -L$SYSTEMC_HOME/lib-linux64 -o sim -lsystemc

Hope it helps.

Regards,

Ameya Vikram Singh

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...