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 3348868
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T01:35:42+00:00 2026-05-18T01:35:42+00:00

I am trying to learn the shared library concepts on linux using GCC. So

  • 0

I am trying to learn the shared library concepts on linux using GCC. So I have created a simple library.

library.c

int foo(void)  {
    return 10;
}

This is compiled using,

cc -fPIC -g -c library.c
cc -shared -fPIC -Wl,-soname,libmytest.so.1 -o libmytest.so.1.0.1 library.o -lc

It created the file libmytest.so.1.0.1 in the current directory. Now I am writing a client to consume this library in the same directory.

client.c

#include <stdio.h>

extern int foo(void);

int main()
{
    int a = foo();
    printf("a is %d", a);
    return 0;
}

compiling using,

cc client.c -o client -lmytest

but this exits with the message

/usr/bin/ld: cannot find -lmytest
collect2: ld returned 1 exit status

Can anyone help me to find out what I am doing wrong here?

  • 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-05-18T01:35:42+00:00Added an answer on May 18, 2026 at 1:35 am

    Try using a -L option which is used to add a directory to the list of directories that are searched for the -l option:

    cc client.c -L. -o client -lmytest
    

    Assuming the .so is present in the same directory as client.c. If not add suitable path.

    The linker on seeing -lmytest looks for libmytest.so but you have a version number appended to it so it does not work. Way to fix this is to create a symlink named libmytest.so pointing to libmytest.so.1.0.1

    ln -s libmytest.so.1.0.1 libmytest.so   
    

    Alternatively you can use the complete library name on the compile/link line as:

    cc client.c ./libmytest.so.1.0.1 -o client 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In trying to learn how to create objects in ActionScript, I have had no
I'm trying to compile the following simple DL library example code from Program-Library-HOWTO with
I'm trying to learn how to make a simple call to the server from
Im trying to learn Sync framework. I have followed step by step MSDN Documentation
Trying to learn ASP MVC coming from Linux/LAMP background (in other words I'm a
Trying to learn Regex in Python to find words that have consecutive vowel-consonant or
Trying to learn C++ and working through a simple exercise on arrays. Basically, I've
I am trying to learn the jQuery validation plugin, so I created the simplest
Trying to learn a bit of CSS and I want a horizontal navbar and
I'm trying to learn C. As a C# developer, my IDE is Visual Studio.

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.