mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-17 06:39:34 +02:00
* only check relocsection for win32
This commit is contained in:
parent
076d3b2160
commit
23c127a58e
@ -1333,8 +1333,9 @@ unit pmodules;
|
|||||||
DLLsource:=islibrary;
|
DLLsource:=islibrary;
|
||||||
IsExe:=true;
|
IsExe:=true;
|
||||||
parse_only:=false;
|
parse_only:=false;
|
||||||
{ relocation works only without stabs !! PM }
|
{ relocation works only without stabs under win32 !! PM }
|
||||||
if RelocSection then
|
if RelocSection and
|
||||||
|
(target_info.target=target_i386_win32) then
|
||||||
begin
|
begin
|
||||||
aktglobalswitches:=aktglobalswitches+[cs_link_strip];
|
aktglobalswitches:=aktglobalswitches+[cs_link_strip];
|
||||||
{ Warning stabs info does not work with reloc section !! }
|
{ Warning stabs info does not work with reloc section !! }
|
||||||
@ -1557,7 +1558,10 @@ unit pmodules;
|
|||||||
end.
|
end.
|
||||||
{
|
{
|
||||||
$Log$
|
$Log$
|
||||||
Revision 1.175 1999-11-30 10:40:44 peter
|
Revision 1.176 1999-12-10 10:02:53 peter
|
||||||
|
* only check relocsection for win32
|
||||||
|
|
||||||
|
Revision 1.175 1999/11/30 10:40:44 peter
|
||||||
+ ttype, tsymlist
|
+ ttype, tsymlist
|
||||||
|
|
||||||
Revision 1.174 1999/11/29 16:24:52 pierre
|
Revision 1.174 1999/11/29 16:24:52 pierre
|
||||||
|
Loading…
Reference in New Issue
Block a user