| delorie.com/archives/browse.cgi | search |
| Mailing-List: | contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm |
| List-Unsubscribe: | <mailto:cygwin-unsubscribe-archive-cygwin=delorie DOT com AT sourceware DOT cygnus DOT com> |
| List-Subscribe: | <mailto:cygwin-subscribe AT sourceware DOT cygnus DOT com> |
| List-Archive: | <http://sourceware.cygnus.com/ml/cygwin/> |
| List-Post: | <mailto:cygwin AT sourceware DOT cygnus DOT com> |
| List-Help: | <mailto:cygwin-help AT sourceware DOT cygnus DOT com>, <http://sourceware.cygnus.com/ml/#faqs> |
| Sender: | cygwin-owner AT sourceware DOT cygnus DOT com |
| Delivered-To: | mailing list cygwin AT sourceware DOT cygnus DOT com |
| Message-ID: | <001a01bf0492$d046cb20$c0019c95@SciFi.PL> |
| From: | "Maciek Dobrzanski" <macko AT scifi DOT pl> |
| To: | <cygwin AT sourceware DOT cygnus DOT com> |
| Subject: | Loadable modules |
| Date: | Wed, 22 Sep 1999 02:35:29 +0200 |
| Organization: | SciFi.PL - Fantastyka w internecie |
| MIME-Version: | 1.0 |
| X-Priority: | 3 |
| X-MSMail-Priority: | Normal |
| X-Mailer: | Microsoft Outlook Express 5.00.2417.2000 |
| X-MimeOLE: | Produced By Microsoft MimeOLE V5.00.2314.1300 |
Hi,
I have written simple program that imports functions from external
modules (using dlopen() and dlsyms()). Also I have written simple module
with one function inside that does nothing but printing "It worked".
Now, I don't now how to compile/link/whatever the module, so that it
could be loaded into the program.
gcc -o test.exe test.c
gcc -c -o mod.o mod.c
and then what...???
Executing 'ld -o mod.so mod.o' doesn't work (there is an error because
of undefinied reference to printf()).
program.c:
...
ptr = dlopen ("mod.so", 1);
...
test = (func) dlsym (ptr, "mod_exec");
test();
...
mod.c:
#include <stdio.h>
int mod_exec ()
{
printf ("It worked!\n");
}
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
| webmaster | delorie software privacy |
| Copyright © 2019 by DJ Delorie | Updated Jul 2019 |