mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-26 20:32:20 +02:00
* removed dbgstabs usage.
git-svn-id: trunk@5253 -
This commit is contained in:
parent
f89a0ac4c1
commit
a993ddbe5c
@ -80,6 +80,26 @@ interface
|
|||||||
RELOC_ABSOLUTE32 = RELOC_ABSOLUTE;
|
RELOC_ABSOLUTE32 = RELOC_ABSOLUTE;
|
||||||
{$endif x86_64}
|
{$endif x86_64}
|
||||||
|
|
||||||
|
const
|
||||||
|
{ stab types }
|
||||||
|
N_GSYM = $20;
|
||||||
|
N_STSYM = 38; { initialized const }
|
||||||
|
N_LCSYM = 40; { non initialized variable}
|
||||||
|
N_Function = $24; { function or const }
|
||||||
|
N_TextLine = $44;
|
||||||
|
N_DataLine = $46;
|
||||||
|
N_BssLine = $48;
|
||||||
|
N_RSYM = $40; { register variable }
|
||||||
|
N_LSYM = $80;
|
||||||
|
N_tsym = 160;
|
||||||
|
N_SourceFile = $64;
|
||||||
|
N_IncludeFile = $84;
|
||||||
|
N_BINCL = $82;
|
||||||
|
N_EINCL = $A2;
|
||||||
|
N_LBRAC = $C0;
|
||||||
|
N_EXCL = $C2;
|
||||||
|
N_RBRAC = $E0;
|
||||||
|
|
||||||
type
|
type
|
||||||
TObjSectionOption = (
|
TObjSectionOption = (
|
||||||
{ Has Data available in the file }
|
{ Has Data available in the file }
|
||||||
@ -453,7 +473,7 @@ implementation
|
|||||||
|
|
||||||
uses
|
uses
|
||||||
SysUtils,
|
SysUtils,
|
||||||
globals,verbose,fmodule,ogmap,dbgstabs;
|
globals,verbose,fmodule,ogmap;
|
||||||
|
|
||||||
const
|
const
|
||||||
SectionDataMaxGrow = 4096;
|
SectionDataMaxGrow = 4096;
|
||||||
|
Loading…
Reference in New Issue
Block a user