Página 1 de 1

Xailer

Publicado: Mié May 13, 2015 7:32 pm
por Gary109
Hi,

I just downloaded and installed Xailer 4.0.1 (May 2015) and Harbour 3.2.0dev (r1503071916) from the download area. I created a solution and I have been unable to run the new solution prg. The link error I get is:

Linking: SI.exe...
C:/Xailer/Hb32/Lib/Win/mingw/libhbrtl.a(gtsys.o):gtsys.c:(.text+0x1): undefined reference to `HB_FUN_HB_GT_WIN'
0 Files, 0 Warnings, 1 Errors
Compile time: 0.00s Link time: 0.20s Total time: 0.20s

Any advice would be appreciated.

Thanks,
Gary

Re: Xailer

Publicado: Mié May 13, 2015 7:41 pm
por ignacio
Hi Gary,

Could you confirm it happens with any Xailer sample. In case not, could you send us a sample project ?

Regards,

Note: Use the menu option Project->Export to send us the sample. TIA.

Re: Xailer

Publicado: Mié May 13, 2015 11:00 pm
por Gary109
I have attached the project. I tried the new install on an additional pc and the same result occurred.

Thanks

Re: Xailer

Publicado: Jue May 14, 2015 11:15 am
por jfgimenez
Gary,

the reason is that you're not using any Xailer component in the program, and thus, no parts of Xailer are linked, causing that a GT of any type must be linked (it ask for GT_WIN by default). There are 2 possible ways:

1) Add this two lines at the end of test.prg:

Código: Seleccionar todo

ANNOUNCE HB_GTSYS
REQUEST HB_GT_NUL_DEFAULT
2) Force to link any component of Xailer. F.e., by adding:

Código: Seleccionar todo

REQUEST XApplication

Re: Xailer

Publicado: Jue May 14, 2015 3:46 pm
por Gary109
I guess that's why you told me to run an additional sample.

Thanks for your time,
Gary