caml-list - the Caml user's mailing list
 help / color / mirror / Atom feed
From: peter.ilberg@ni.com
To: caml-list@inria.fr
Subject: [Caml-list] Linking native ocaml object files into C app on Windows
Date: Thu, 10 Jun 2004 09:07:10 -0500	[thread overview]
Message-ID: <OFCE9B28C2.1A1B3348-ON86256EAF.004C6D3C-86256EAF.004D8F29@natinst.com> (raw)

Hello everyone!

I'm trying to add some ocaml code (a simple lexer/parser) to an existing C 
application and I'm having problems linking the whole thing on Windows. 
Needless to say, everything works fine under Unix (Mac OS X). I'm using 
the MSVC version of ocaml.

Here's are the commands that I use to build the whole thing:

cl /c /nologo /MT /I "C:\Program Files\Objective Caml\lib" main.c
ocamllex lexer.mll
ocamlopt -c -output-obj lexer.ml -o lexer.obj
cl -o test main.obj lexer.obj /link /nologo 
/libpath:"c:\progra~1\object~1\lib" libasmrun.lib

And here are the link errors that result from the last command:

lexer.obj : error LNK2001: unresolved external symbol _Lexing__engine_117
lexer.obj : error LNK2001: unresolved external symbol 
_Lexing__from_function_140
lexer.obj : error LNK2001: unresolved external symbol _Lexing__lexeme_155
lexer.obj : error LNK2001: unresolved external symbol 
_Pervasives__close_out_232
lexer.obj : error LNK2001: unresolved external symbol 
_Pervasives__open_out_202
lexer.obj : error LNK2001: unresolved external symbol 
_Pervasives__output_string_214
lexer.obj : error LNK2001: unresolved external symbol _caml_curry2
libasmrun.lib(startup.obj) : error LNK2001: unresolved external symbol 
_caml_code_segments
libasmrun.lib(startup.obj) : error LNK2001: unresolved external symbol 
_caml_data_segments
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Failure
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Invalid_argument
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Out_of_memory
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Stack_overflow
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Sys_error
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_End_of_file
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Division_by_zero
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Not_found
libasmrun.lib(fail.obj) : error LNK2001: unresolved external symbol 
_Sys_blocked_io
libasmrun.lib(i386nt.obj) : error LNK2001: unresolved external symbol 
_caml_apply2
libasmrun.lib(i386nt.obj) : error LNK2001: unresolved external symbol 
_caml_apply3
libasmrun.lib(i386nt.obj) : error LNK2001: unresolved external symbol 
_caml_program
libasmrun.lib(roots.obj) : error LNK2001: unresolved external symbol 
_caml_globals
libasmrun.lib(roots.obj) : error LNK2001: unresolved external symbol 
_caml_frametable
test.exe : fatal error LNK1120: 23 unresolved externals

I'm sure I'm missing something obvious, but I can't figure it out. Thanks 
in advance,

Peter

-------------------
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


             reply	other threads:[~2004-06-10 14:07 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-06-10 14:07 peter.ilberg [this message]
     [not found] <40C87D7B.6010504@lexifi.com>
2004-06-10 16:07 ` peter.ilberg
     [not found] <20040610190443.A10900@pauillac.inria.fr>
2004-06-10 17:28 ` peter.ilberg

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=OFCE9B28C2.1A1B3348-ON86256EAF.004C6D3C-86256EAF.004D8F29@natinst.com \
    --to=peter.ilberg@ni.com \
    --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;
as well as URLs for NNTP newsgroup(s).