Hi ,
Today I bought the latest FWH ( libs dated 2006.09.17 ) and tried with xHarbour binaries from FW site and with xHB Builder ( 2006.August ) . With free xHarbour all compiles and links are OK . But with xHB builder I'm getting the following error :
xLINK: error: Unresolved external symbol '_HB_FUN___CLSCNTCLASSES'.
xLINK: fatal error: 1 unresolved external(s).
How to solve this problem ?
Regards , Rimantas
Linking problems with xHarbour builder ...
Linking problems with xHarbour builder ...
Rimantas U.
- Antonio Linares
- Site Admin
- Posts: 37481
- Joined: Thu Oct 06, 2005 5:47 pm
- Location: Spain
- Contact:
Rimantas,
Please remove this code is source\function\errsysw.prg:
and change it:
Please remove this code is source\function\errsysw.prg:
Code: Select all
#ifndef __XHARBOUR__
while ! Empty( __ClassName( n ) )
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF
end
#else
while n <= __ClsCntClasses()
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF
end
#endif
Code: Select all
while ! Empty( __ClassName( n ) )
cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF
end
OK . I'll try it .. )Antonio Linares wrote:Rimantas,
and change it:Code: Select all
while ! Empty( __ClassName( n ) ) cErrorLog += " " + Str( n, 3 ) + " " + __ClassName( n++ ) + CRLF end
Regards !
Rimantas U.