From: Sandeep Subramaniam <sandeeps@ittc.ku.edu>
To: caml-list@inria.fr
Subject: [Caml-list] reg : camlidl_malloc
Date: Fri, 5 Jul 2002 10:54:20 -0500 (CDT) [thread overview]
Message-ID: <Pine.LNX.4.10.10207051044440.988-100000@astro.ittc.ku.edu> (raw)
Hi,
I am using camlidl-1.04 and ocaml-3.04 on Linux.
Following is a section of code generated by camlidl which invokes the
function camlidl_malloc() declared in caml/camlruntime.h
value camlidl_test1_write_mark_table(
value _v_mark,
value _v_num)
{
struct marks *mark; /*in*/
int num; /*in*/
mlsize_t _c1;
mlsize_t _c2;
value _v3;
struct camlidl_ctx_struct _ctxs = { CAMLIDL_TRANSIENT, NULL };
camlidl_ctx _ctx = &_ctxs;
_c1 = Wosize_val(_v_mark);
mark = camlidl_malloc(_c1 * sizeof(struct marks ), _ctx);
for (_c2 = 0; _c2 < _c1; _c2++) {
_v3 = Field(_v_mark, _c2);
camlidl_ml2c_test1_struct_marks(_v3, &mark[_c2], _ctx);
}
num = Int_val(_v_num);
write_mark_table(mark, num);
camlidl_free(_ctx);
return Val_unit;
}
The C file containing this code is compiled into a shared object (.so
file)
But when dynamically linking this C code with Caml code I get the error :
"Error on dynamically loaded library: ./test1_stubs.so: undefined symbol:
camlidl_malloc"
It seems that camlidl_malloc() is declared in camlidlruntime.h but not
defined .
So how do I solve this error ?
Thanx,
Sandeep.
Sandeep Subramaniam
Graduate Research Assistant
ITTC, Raymond Nichols Hall,
University of Kansas
-------------------
To unsubscribe, mail caml-list-request@inria.fr Archives: http://caml.inria.fr
Bug reports: http://caml.inria.fr/bin/caml-bugs FAQ: http://caml.inria.fr/FAQ/
Beginner's list: http://groups.yahoo.com/group/ocaml_beginners
next reply other threads:[~2002-07-05 15:54 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-07-05 15:54 Sandeep Subramaniam [this message]
2002-07-05 18:22 ` Dmitry Bely
2002-07-05 19:19 ` Sandeep Subramaniam
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=Pine.LNX.4.10.10207051044440.988-100000@astro.ittc.ku.edu \
--to=sandeeps@ittc.ku.edu \
--cc=caml-list@inria.fr \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox