Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9130255
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T07:55:49+00:00 2026-06-17T07:55:49+00:00

I have a shared library say libfile2.so (which contains print2() function definition). Now I

  • 0

I have a shared library say libfile2.so (which contains print2() function definition). Now I create a libfile1.so (which contains print1() function definition which in turn calls print2() function in libfile2.so). Now I create a main.c file which contains main() function which calls print1() by dynamically linking libfile1.so.

But I am getting the following error:

./libfile1.so: undefined reference to `print2'**

The following are the commands that I am using:

gcc -c -fpic file1.c
gcc -shared -o libfile1.so file1.o
gcc -c -fpic file2.c
gcc -shared -o libfile2.so file2.o
export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
gcc -I. -L. -o main main.c -lfile1
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T07:55:50+00:00Added an answer on June 17, 2026 at 7:55 am

    If you have called only print1 in your main.c. Then set the path of the libfile2.so in the LD_LIBRARY_PATH. Because it will try to find the dependencies of libfile1.so while linking with main.c.

    gcc -o file1.o -c file.c
    gcc -o file2.o -c file.c
    gcc -o libfile2.so file2.o -shared
    gcc -o libfile1.so file1.o -L. -lfile2 -shared
    gcc -o main.o -c main.c
    export LD_LIBRARY_PATH=.:$LD_LIBRARY_PATH
    gcc -o main.exe main.o -L. -lfile1 
    

    If you have called both print1 and print2 in main.c then link both libfile1.so and libfile2.so like below.

    gcc -o main.o -c main.c
    gcc -o main.exe main.o -L$YOUR_LIB_PATH -lfile1 -lfile2
    

    Because all the symbol used in main.c needs to be resolved while generating executable.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a shared library say foo.so which contains a function called initialize() .
Suppose I have an shared library file (say libtemp.so) which has a global variable.
Let's say I have a python script which loads a shared library (SL) through
I'm developing a shared library. Let's say I have the following class definition: class
Suppose we have a shared library named libtest.so, there is one function foo in
I have existing Linux shared object file (shared library) which has been stripped. I
I have a cpp file from which I am generating a shared library (using
Say I have a library libfoo.so.1 , which depends (according to ldd ) on
I need to create a dynamic library in Android.mk . Say I have the
Let's say I changed a shared library and recompiled it. Do I have to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.