mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-03 03:09:31 +01:00
* last changes before release:
- gdb fixed
- ratti386 warning removed (about unset function result)
This commit is contained in:
parent
7fda0e527b
commit
8cd85667a7
@ -26,7 +26,7 @@ endif
|
||||
|
||||
# in case pwd is not present on the DOS-OS
|
||||
ifeq ($(strip $(BASEDIR)),'')
|
||||
undef inlinux
|
||||
inlinux=
|
||||
BASEDIR:=.
|
||||
endif
|
||||
|
||||
|
||||
1692
compiler/msgtxt.inc
1692
compiler/msgtxt.inc
File diff suppressed because it is too large
Load Diff
@ -816,10 +816,10 @@ unit pmodules;
|
||||
st:=new(punitsymtable,init(staticsymtable,programname));
|
||||
|
||||
{Generate a procsym.}
|
||||
aktprocsym:=new(Pprocsym,init('program_init'));
|
||||
aktprocsym:=new(Pprocsym,init('main'));
|
||||
aktprocsym^.definition:=new(Pprocdef,init);
|
||||
aktprocsym^.definition^.options:=aktprocsym^.definition^.options or poproginit;
|
||||
aktprocsym^.definition^.setmangledname('program_init');
|
||||
aktprocsym^.definition^.setmangledname(target_info.Cprefix+'main');
|
||||
{The localst is a local symtable. Change it into the static
|
||||
symtable.}
|
||||
dispose(aktprocsym^.definition^.localst,done);
|
||||
@ -932,8 +932,13 @@ unit pmodules;
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 1998-03-25 11:18:15 root
|
||||
Initial revision
|
||||
Revision 1.2 1998-03-30 15:53:01 florian
|
||||
* last changes before release:
|
||||
- gdb fixed
|
||||
- ratti386 warning removed (about unset function result)
|
||||
|
||||
Revision 1.1.1.1 1998/03/25 11:18:15 root
|
||||
* Restored version
|
||||
|
||||
Revision 1.43 1998/03/20 23:31:34 florian
|
||||
* bug0113 fixed
|
||||
|
||||
@ -868,6 +868,7 @@ const
|
||||
var
|
||||
p : pai_external;
|
||||
Begin
|
||||
SearchDirectVar:=false;
|
||||
{ search in the list of internals }
|
||||
p:=search_assembler_symbol(internals,hs,EXT_ANY);
|
||||
if p=nil then
|
||||
@ -3670,8 +3671,13 @@ end.
|
||||
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 1998-03-25 11:18:15 root
|
||||
Initial revision
|
||||
Revision 1.2 1998-03-30 15:53:01 florian
|
||||
* last changes before release:
|
||||
- gdb fixed
|
||||
- ratti386 warning removed (about unset function result)
|
||||
|
||||
Revision 1.1.1.1 1998/03/25 11:18:15 root
|
||||
* Restored version
|
||||
|
||||
Revision 1.21 1998/03/10 16:27:44 pierre
|
||||
* better line info in stabs debug
|
||||
|
||||
@ -109,7 +109,7 @@ unit systems;
|
||||
pasext : '.pp';
|
||||
newline : #13#10;
|
||||
labelprefix : 'L';
|
||||
Cprefix : ''; {???}
|
||||
Cprefix : '_'; {???}
|
||||
use_function_relative_addresses : true;
|
||||
endian : endian_little
|
||||
),
|
||||
@ -149,7 +149,7 @@ unit systems;
|
||||
pasext : '.pas';
|
||||
newline : #13#10;
|
||||
labelprefix : '.L';
|
||||
Cprefix : ''; {???}
|
||||
Cprefix : '_'; {???}
|
||||
use_function_relative_addresses : true; {????}
|
||||
endian : endian_little
|
||||
),
|
||||
@ -357,8 +357,13 @@ begin
|
||||
end.
|
||||
{
|
||||
$Log$
|
||||
Revision 1.1 1998-03-25 11:18:15 root
|
||||
Initial revision
|
||||
Revision 1.2 1998-03-30 15:53:01 florian
|
||||
* last changes before release:
|
||||
- gdb fixed
|
||||
- ratti386 warning removed (about unset function result)
|
||||
|
||||
Revision 1.1.1.1 1998/03/25 11:18:15 root
|
||||
* Restored version
|
||||
|
||||
Revision 1.33 1998/03/10 23:48:37 florian
|
||||
* a couple of bug fixes to get the compiler with -OGaxz compiler, sadly
|
||||
|
||||
Loading…
Reference in New Issue
Block a user