Programming This forum is for all programming questions.
The question does not have to be directly related to Linux and any language is fair game. |
| Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
08-13-2012, 10:26 AM
|
#1
|
|
Senior Member
Registered: Apr 2003
Location: Colombia
Distribution: Kubuntu, Debian, Knoppix
Posts: 1,888
Rep:
|
runtime linking - can anybody point me to a hello world example?
Hi!
I'm trying to find a simple straight up example of runtime linking in C. I want to be able to use some functions from an so that I don't want to actually link at build time. Is there such an example out there? A hello world kind of example would be very handy.
Thanks in advance.
|
|
|
|
08-13-2012, 10:37 AM
|
#2
|
|
Senior Member
Registered: Oct 2011
Location: Budapest
Distribution: Debian/GNU/Linux, AIX
Posts: 1,042
|
Shared libs are resolved at program loading. Try these commands:
Code:
ldd MyHelloWorldProgram
readelf -d MyHelloWorldProgram
they should prove that your program already uses shared libs (libc.so for example)
|
|
|
|
08-13-2012, 10:48 AM
|
#3
|
|
Senior Member
Registered: Apr 2003
Location: Colombia
Distribution: Kubuntu, Debian, Knoppix
Posts: 1,888
Original Poster
Rep:
|
dlopen for starters. http://www.yolinux.com/TUTORIALS/Lib...ndDynamic.html
How can I use one struct defined in the so? dlsym apparently can't find it.
|
|
|
|
08-13-2012, 10:50 AM
|
#4
|
|
Senior Member
Registered: Apr 2003
Location: Colombia
Distribution: Kubuntu, Debian, Knoppix
Posts: 1,888
Original Poster
Rep:
|
I think I'll be fine without the structure.
|
|
|
|
08-13-2012, 10:52 AM
|
#5
|
|
Senior Member
Registered: May 2005
Location: boston, usa
Distribution: fc-12/ fc-11-live-usb/ aix
Posts: 2,672
|
this simple example should help illustrate:
Code:
[schneidz@hyper bak]$ ll
total 8
-rw-rw-r--. 1 schneidz schneidz 87 Aug 13 11:50 main.c
-rw-rw-r--. 1 schneidz schneidz 66 Aug 13 11:48 schneidz.c
[schneidz@hyper bak]$ cat main.c
#include<stdio.h>
main()
{
printf(" schneidz of 5 x 5 = %d\n", schneidz(5,5));
}
[schneidz@hyper bak]$ cat schneidz.c
#include <stdio.h>
int schneidz(int x, int y)
{
return x * y;
}
[schneidz@hyper bak]$ gcc -c schneidz.c
[schneidz@hyper bak]$ ll
total 12
-rw-rw-r--. 1 schneidz schneidz 87 Aug 13 11:50 main.c
-rw-rw-r--. 1 schneidz schneidz 66 Aug 13 11:48 schneidz.c
-rw-rw-r--. 1 schneidz schneidz 1248 Aug 13 11:50 schneidz.o
[schneidz@hyper bak]$ gcc main.c schneidz.o -o schneidz.x
[schneidz@hyper bak]$ ll
total 20
-rw-rw-r--. 1 schneidz schneidz 87 Aug 13 11:50 main.c
-rw-rw-r--. 1 schneidz schneidz 66 Aug 13 11:48 schneidz.c
-rw-rw-r--. 1 schneidz schneidz 1248 Aug 13 11:50 schneidz.o
-rwxrwxr-x. 1 schneidz schneidz 6598 Aug 13 11:51 schneidz.x
[schneidz@hyper bak]$ ./schneidz.x
schneidz of 5 x 5 = 25
|
|
|
|
08-13-2012, 10:58 AM
|
#6
|
|
Senior Member
Registered: Oct 2011
Location: Budapest
Distribution: Debian/GNU/Linux, AIX
Posts: 1,042
|
struct, enums, unions, typedef and #defines exists in compile time; in run-time you can use dlsym to access functions and global variables
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 11:01 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|