mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-22 10:09:22 +02:00
* Fixed wince exceptions.
git-svn-id: trunk@5124 -
This commit is contained in:
parent
9f22b00219
commit
d6bef899a5
@ -922,7 +922,7 @@ implementation
|
|||||||
Concat('HEADER');
|
Concat('HEADER');
|
||||||
Concat('EXESECTION .text');
|
Concat('EXESECTION .text');
|
||||||
if target_info.system=system_arm_wince then
|
if target_info.system=system_arm_wince then
|
||||||
Concat(' OBJSECTION .pdata.FPC_EH_PROLOG');
|
Concat(' OBJSECTION .pdata.n_FPC_EH_PROLOG');
|
||||||
Concat(' OBJSECTION .text*');
|
Concat(' OBJSECTION .text*');
|
||||||
Concat(' SYMBOL ___CTOR_LIST__');
|
Concat(' SYMBOL ___CTOR_LIST__');
|
||||||
Concat(' SYMBOL __CTOR_LIST__');
|
Concat(' SYMBOL __CTOR_LIST__');
|
||||||
@ -1122,7 +1122,7 @@ implementation
|
|||||||
Add(' .text __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :');
|
Add(' .text __image_base__ + ( __section_alignment__ < 0x1000 ? . : __section_alignment__ ) :');
|
||||||
Add(' {');
|
Add(' {');
|
||||||
{$ifdef arm}
|
{$ifdef arm}
|
||||||
Add(' *(.pdata.FPC_EH_PROLOG)');
|
Add(' *(.pdata.n_FPC_EH_PROLOG)');
|
||||||
{$endif arm}
|
{$endif arm}
|
||||||
Add(' *(.init)');
|
Add(' *(.init)');
|
||||||
add(' *(.text .stub .text.* .gnu.linkonce.t.*)');
|
add(' *(.text .stub .text.* .gnu.linkonce.t.*)');
|
||||||
|
Loading…
Reference in New Issue
Block a user