Unresolved External Symbol _hb_dynsymSymbol

Post Reply
User avatar
Sakis
Posts: 41
Joined: Fri Oct 21, 2005 2:12 pm
Location: Athens

Unresolved External Symbol _hb_dynsymSymbol

Post by Sakis »

Hello FiveWiners

How to solve this situation ? Any help would be apreciate.

System FWH February 2006 Builb - xHarbour commercial xBuilder February 2006 release.

Many Thanks
Greetings
Dionisis
Frank Demont
Posts: 142
Joined: Sun Oct 09, 2005 10:59 am

Post by Frank Demont »

I downloaded the new version from fw and tryed it on a sample :

xLINK: error: Unresolved external symbol '_hb_dynsymSymbol'.

xLINK: fatal error: 1 unresolved external(s).

Frank
User avatar
Sakis
Posts: 41
Joined: Fri Oct 21, 2005 2:12 pm
Location: Athens

Post by Sakis »

Hi Antonio

As Frank say's trying to link one of the samples not only my application . I faced out the same error.

TIA
Dionisis
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Post by Enrico Maria Giordano »

You must use the provided Harbour or xHarbour, as far as I know.

EMG
User avatar
Sakis
Posts: 41
Joined: Fri Oct 21, 2005 2:12 pm
Location: Athens

Post by Sakis »

Hi Enrico

No because I use the comercial version of xHarbour compiler. And with FWH January build i diden't faced any problems at all. Also i dident faced any problems with last week's Antonios Beta Testing LIBS . I am afread that is more in depth issue.

Greetings
Dionisis
Frank Demont
Posts: 142
Joined: Sun Oct 09, 2005 10:59 am

Post by Frank Demont »

Hello,

It seems that to vm.lib a module dynsym.c is changed , it is visible on cvs

I am afraid that we have to wait on e new release from xhb.

In changelog :

* xharbour/contrib/rdd_ads/adsmgmnt.c
* rewritten ADSMGGETUSERNAMES() - now it does not access any item
internals, is safe for future automatic GC activation and is faster
because array resizing has been eliminated.
I cannot test it so I'd like to ask Luiz to check this function
for some possible typos.

* xharbour/include/hbapi.h
* xharbour/source/vm/dynsym.c
+ added hb_dynsymSymbol()
User avatar
Enrico Maria Giordano
Posts: 7355
Joined: Thu Oct 06, 2005 8:17 pm
Location: Roma - Italia
Contact:

Post by Enrico Maria Giordano »

Sakis wrote:No because I use the comercial version of xHarbour compiler.
Then you have to ask xHarbour.com for an update. Or stick with FWH of January.

EMG
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Post by Antonio Linares »

Meanwhile xHB does not release a new build, there is a workaround to fix it. Please add this function to your app:

#pragma BEGINDUMP

#include "hbapi.h"
#include "hbapiitm.h"

PHB_SYMB hb_dynsymSymbol( PHB_DYNS pDynSym )
{
return pDynSym->pSymbol;
}

#pragma ENDDUMP
regards, saludos

Antonio Linares
www.fivetechsoft.com
User avatar
Sakis
Posts: 41
Joined: Fri Oct 21, 2005 2:12 pm
Location: Athens

Post by Sakis »

Antonio you make your miracle again!!!!! :D


MANY MANY THANKS

Dionisis
Post Reply