[SOLVED] 1.876 (4.20) - undefined symbol ...
Posted: Fri May 30, 2008 5:54 am
Tailbite code:
Errors during TailBite compilation:
I think this is due to the string library not being included. If I'm correct this is a known issue and not a bug.
This fixes it:
Code: Select all
ProcedureDLL.s TB_Test()
EndProcedure
Code: Select all
PBCompiler: /COMMENTED /DEBUGGER
******************************************
PureBasic 4.20 (Windows - x86)
******************************************
Compiling D:\Program Files\PureBasic\TailBite\Samples\MyDebugErrorPlugin\MyDebugErrorPlugin.pb
Loading external libraries...
Starting compilation...
5 lines processed.
Creating executable.
Error: Assembler
PureBasic.asm [84]:
MP0
PureBasic.asm [66] MP0 [5]:
MOV eax,[_PB_StringBasePosition]
error: undefined symbol '_PB_StringBasePosition'.
This fixes it:
Code: Select all
a.s=""
ProcedureDLL.s TB_Test()
EndProcedure