[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Borland BCC 5.5?
- From: "Terry Bayne" <gnome@...>
- Date: Fri, 20 Jul 2001 10:57:48 -0500
Bob,
Are you trying to mix C++ and C? One of the things I had to do with C++ Builder was to wrap the
#include "lua.h" statements in my source with:
extern "C" {
#include "lua.h"
}
Also I built the libs from the source, and just to keep everything the same with my project I specified using
"stdcall" as the calling convention.
Hope this helps
Terry
On Fri, 20 Jul 2001 11:07:27 -0400, Bob Paddock wrote:
>
>http://www.tecgraf.puc-rio.br/lua/ftp/binaries/ms-windows/bc55/
>
>I'm trying to link the lua.lib file found at the above URL using the free Boarland Command Line Compiler version 5.5.
>
>It acts like that .lib is not present in my path, because it says all of the Lua's items are "unresolved externs".
>
>I'm not sure if I'm doing some thing wrong or there is some incompatablity with the file, like it can't find the library entry point.
>
>Can some one point me in the correct direction please?
>
>A example bcc makefile, or makefile for bcc that builds lua.lib, is what I'm hoping for.
>
>
>