Hi Rossine,

> I try use "-shared" and generate this errors:
>
> [ERRORS]
>
> Error: Unresolved external '_hb_stackReturnItem' referenced from
> C:\FWH\LIB\FIVEHC.LIB|HARBOURC
> Error: Unresolved external '_hb_gcFree' referenced from
> C:\HRB_BCC\LIB\HBWIN.LIB|win_dll
> Error: Unresolved external '_hb_stackItem' referenced from
> C:\FWH\LIB\FIVEHC.LIB|FFDLGPRC
> Error: Unresolved external '_hb_stackBaseOffset' referenced from
> C:\FWH\LIB\FIVEHC.LIB|DLGBOX
> Error: Unresolved external '_hb_stackAllocItem' referenced from
> C:\HRB_BCC\LIB\HBWIN.LIB|win_ole
> Error: Unresolved external '_hb_stackSetActionRequest' referenced from
> C:\HRB_BCC\LIB\HBWIN.LIB|win_ole
> Error: Unresolved external '_hb_stackItemFromBase' referenced from
> C:\HRB_BCC\LIB\HBWIN.LIB|win_ole
> Error: Unresolved external '_hb_stackSelfItem' referenced from
> C:\HRB_BCC\LIB\HBWIN.LIB|win_ole
> Error: Unresolved external '_hb_stackBaseItem' referenced from
> C:\HRB_BCC\LIB\HBWIN.LIB|win_ole
> Error: Unresolved external '_hb_stackBaseProcOffset' referenced from
> C:\HRB_BCC\LIB\XHB.LIB|xhbqself
> Error: Unresolved external '_hb_symEval' referenced from
> C:\HRB_BCC\LIB\XHB.LIB|xhbqself
> Error: Unresolved external '_hb_cmdargARGV' referenced from
> C:\HRB_BCC\LIB\XHB.LIB|xhbfunc
> Error: Unresolved external '_hb_fsAttrFromRaw' referenced from
> C:\HRB_BCC\LIB\XHB.LIB|filestat
> Error: Unresolved external '_hb_fsAttrDecode' referenced from
> C:\HRB_BCC\LIB\XHB.LIB|filestat
> Error: Unresolved external '_hb_gcGripGet' referenced from
> C:\FWH\LIB\FIVEHC.LIB|ACTX


These components use Harbour functions which aren't made
public from Harbour .dll. As I went through the list most of these
aren't exported for a good reason (they are internal, private functions),
maybe few of these could be add to official Harbour API and thus
exported. I don't want to make any such decision though, hopefully
someone else will.

Until then, you can add static libs to resolve the missing symbols:
hbmk2 my.prg -lhbwin -lxhb -shared -lhbvm -lhbrtl -lhbcommon -lhbmacro

Some more comments:
- Mindaugas's new OLE implementation uses much less internals,
  so some of these will be resolved, when we switch to it.
- It may not be an option for you, but for the record: switching to
  MinGW resolves these problems automatically.
- Even simply switching to the MinGW made Harbour .dll could resolve it,
  if you'd add -bcc prefix to those and create BCC implib for them using
  'implib -a'. For me it failed due to some unresolved symbols, because
  '-a' seems to forget (?) to add leading underscore to some public symbols.
  [ we had the same problem with OpenSSL implibs for BCC. ]
  Couldn't find the reason for that.
- Obvious choices are to reduce reliance on these components, or
  just acknowledge the fact that they won't work in pure shared mode.

Brgds,
Viktor
_______________________________________________
Harbour mailing list
Harbour@harbour-project.org
http://lists.harbour-project.org/mailman/listinfo/harbour

Reply via email to