Page 3 of 4

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Wed Jan 27, 2016 7:46 am
by linkerstorm
Hi mpz.

Great job.

However, the link http://www.flasharts.de/mpz/Tailbite/Tailbite.exe leads to a Not Found page.

Could you advice please ?

Thanks.

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Wed Jan 27, 2016 12:24 pm
by RSBasic

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Thu Jan 28, 2016 7:35 am
by linkerstorm
Thanks RSBasic.

However, comparing your exe with my 1.4.16 exe, they are strictly identical so I deduce that this is in fact the 1.4.16 version, or my version is finally the 1.4.17 version (how to know ?).

Maybe have you the version 1.4.17 backed up somewhere ?

Thanks in advance.

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Thu Jan 28, 2016 4:02 pm
by RSBasic
I'm sorry, it's the version 1.4.16. I don't have 1.4.17. :(

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Fri Jan 29, 2016 12:33 pm
by Sveinung

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Fri Jan 29, 2016 11:32 pm
by mpz
Hi,

thanks Sveinung for the link. I am sorry, it was my fault. I have the link checked and repaired:

The exe file for exchange, version 1.4.17
http://www.flasharts.de/mpz/Tailbite/Tailbite.exe


Greetings
Michael

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Sat Jan 30, 2016 7:52 am
by linkerstorm
Hi.

Thanks to Sveinung and mpz for the link :D

Regards

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Fri Mar 04, 2016 9:42 pm
by User_Russian
Where Tailbite it creates temporary files? When building the library, FASM reports an error in the ASM file, but where these files?

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Mon Mar 14, 2016 1:16 am
by mpz
Hi User_Russian.

i am sorry, i dont saw your question. In the Tailbite manager you fins the information about the "ASM Souce file folder". If you choose the function "generate build batch file" you have in the folder a batch file for asm generation.

You can send the exactly asm error message and perhaps i know the error

P.S: or you send me with pm the files and i can test them an tell you the problem...

Greetings
Michael

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Mon Mar 14, 2016 8:52 am
by Rings
any chance to get the source of actual tailbite instead of the exe ?

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Mon Mar 14, 2016 6:08 pm
by User_Russian
mpz wrote:You can send the exactly asm error message and perhaps i know the error
TailBite Error

FAsm: Shared\G_ZIP_UnPack.asm
Error
Line no: 76
Error code: -122
Error String: UNDEFINED_SYMBOL

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Mon Mar 14, 2016 6:35 pm
by User_Russian
Here is the code which compiles fine in PB, but not compiled in TailBite.

Code: Select all

Procedure DataS()
  Protected x
  
  x=?m1
  
  ProcedureReturn
  DataSection
    m1:
    Data.i 0
  EndDataSection
EndProcedure

ProcedureDLL x()
  DataS()
EndProcedure

Code: Select all

DeclareModule xx
Declare DataS()
EndDeclareModule

Module xx
Procedure DataS()
  Protected x
  
  ProcedureReturn
EndProcedure
EndModule

DeclareModule yy
Declare DataS()
EndDeclareModule

Module yy
Procedure DataS()
  Protected x
    
  ProcedureReturn
EndProcedure
EndModule

ProcedureDLL x()
  xx::DataS()
  yy::DataS()
EndProcedure

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Mon Mar 14, 2016 6:46 pm
by acreis
I think Tailbite can't work properly with Modules.

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Wed Mar 16, 2016 10:24 pm
by mpz
Hi,

@Rings -> you find the sourcecode in the first posting as files

@User_Russian -> Error String: UNDEFINED_SYMBOL. I think a adress label is wrong.

show me the txt of the line 76 in the asm code
Shared\G_ZIP_UnPack.asm

The adesslabel is not definied. If you can send me the code i can look on it an repair tailbite. Without the code i cant help.

Problem
"Here is the code which compiles fine in PB, but not compiled in TailBite."

i have tested both code with PB5.31 x86 and PB5.42 x86 an they work. Modules are not a problem. I can create a working lib without problems ?!?

Perhaps you dont use an older version of tailbite and not the tailbite 1.4.17. With an older version you have adresslabel problems...

Greetings Michael

Re: Tailbite v1.4.17 for Windows and PB 5.31 + PB 5.40 LTS

Posted: Thu Mar 17, 2016 10:05 am
by User_Russian
show me the txt of the line 76 in the asm code
I can not find assembler files. The folder "TailBite Library Sources" no files.
Perhaps you dont use an older version of tailbite and not the tailbite 1.4.17.
I downloaded here http://www.purebasic.fr/english/viewtop ... 99#p480999
In TBManager in FrameGadget written "Tailbite 1.4.11 console".
I can create a working lib without problems
Is it possible to have an output lib-file (static library), and not PB library?