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

TailBite specific forum

Moderators: gnozal, ABBKlaus, lexvictory

linkerstorm
User
User
Posts: 47
Joined: Sun Feb 18, 2007 11:57 am

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

Post 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.
linkerstorm
User
User
Posts: 47
Joined: Sun Feb 18, 2007 11:57 am

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

Post 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.
User avatar
RSBasic
Moderator
Moderator
Posts: 1218
Joined: Thu Dec 31, 2009 11:05 pm
Location: Gernsbach (Germany)
Contact:

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

Post by RSBasic »

I'm sorry, it's the version 1.4.16. I don't have 1.4.17. :(
Image
Image
User avatar
Sveinung
Enthusiast
Enthusiast
Posts: 142
Joined: Tue Oct 07, 2003 11:03 am
Location: Bergen, Norway

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

Post by Sveinung »

mpz
Enthusiast
Enthusiast
Posts: 494
Joined: Sat Oct 11, 2008 9:07 pm
Location: Germany, Berlin > member German forum

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

Post 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
Working on - MP3D Library - PB 5.73 version ready for download
linkerstorm
User
User
Posts: 47
Joined: Sun Feb 18, 2007 11:57 am

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

Post by linkerstorm »

Hi.

Thanks to Sveinung and mpz for the link :D

Regards
User_Russian
Addict
Addict
Posts: 1443
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

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

Post 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?
mpz
Enthusiast
Enthusiast
Posts: 494
Joined: Sat Oct 11, 2008 9:07 pm
Location: Germany, Berlin > member German forum

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

Post 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
Working on - MP3D Library - PB 5.73 version ready for download
User avatar
Rings
Moderator
Moderator
Posts: 1427
Joined: Sat Apr 26, 2003 1:11 am

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

Post by Rings »

any chance to get the source of actual tailbite instead of the exe ?
SPAMINATOR NR.1
User_Russian
Addict
Addict
Posts: 1443
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

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

Post 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
User_Russian
Addict
Addict
Posts: 1443
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

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

Post 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
acreis
Enthusiast
Enthusiast
Posts: 182
Joined: Fri Jun 01, 2012 12:20 am

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

Post by acreis »

I think Tailbite can't work properly with Modules.
mpz
Enthusiast
Enthusiast
Posts: 494
Joined: Sat Oct 11, 2008 9:07 pm
Location: Germany, Berlin > member German forum

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

Post 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
Working on - MP3D Library - PB 5.73 version ready for download
User_Russian
Addict
Addict
Posts: 1443
Joined: Wed Nov 12, 2008 5:01 pm
Location: Russia

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

Post 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?
Post Reply