~ubuntu-branches/ubuntu/dapper/fpc/dapper

« back to all changes in this revision

Viewing changes to compiler/systems/i_go32v2.pas

  • Committer: Bazaar Package Importer
  • Author(s): Carlos Laviola
  • Date: 2005-05-30 11:59:10 UTC
  • mfrom: (1.2.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20050530115910-x5pbzm4qqta4i94h
Tags: 2.0.0-2
debian/fp-compiler.postinst.in: forgot to reapply the patch that
correctly creates the slave link to pc(1).  (Closes: #310907)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{
2
 
    $Id: i_go32v2.pas,v 1.2 2003/10/03 22:09:49 peter Exp $
 
2
    $Id: i_go32v2.pas,v 1.7 2005/03/20 22:36:45 olle Exp $
3
3
    Copyright (c) 1998-2002 by Peter Vreman
4
4
 
5
5
    This unit implements support information structures for go32v2
33
33
            system       : system_i386_GO32V2;
34
34
            name         : 'GO32 V2 DOS extender';
35
35
            shortname    : 'Go32v2';
36
 
            flags        : [];
 
36
            flags        : [tf_use_8_3];
37
37
            cpu          : cpu_i386;
38
38
            unit_env     : 'GO32V2UNITS';
39
39
            extradefines : 'DPMI';
40
 
            sourceext    : '.pp';
41
 
            pasext       : '.pas';
42
40
            exeext       : '.exe';
43
41
            defext       : '.def';
44
42
            scriptext    : '.bat';
57
55
            staticClibext : '.a';
58
56
            staticClibprefix : '';
59
57
            sharedClibprefix : '';
 
58
            p_ext_support : false;
60
59
            Cprefix      : '_';
61
60
            newline      : #13#10;
62
61
            dirsep       : '\';
85
84
                maxCrecordalign : 4
86
85
              );
87
86
            first_parm_offset : 8;
88
 
            heapsize     : 2048*1024;
89
87
            stacksize    : 262144;
90
88
            DllScanSupported : false;
91
89
            use_function_relative_addresses : true
102
100
end.
103
101
{
104
102
  $Log: i_go32v2.pas,v $
105
 
  Revision 1.2  2003/10/03 22:09:49  peter
106
 
    * removed paraalign
107
 
 
108
 
  Revision 1.1  2002/09/06 15:03:51  carl
109
 
    * moved files to systems directory
110
 
 
111
 
  Revision 1.2  2002/08/12 15:08:39  carl
112
 
    + stab register indexes for powerpc (moved from gdb to cpubase)
113
 
    + tprocessor enumeration moved to cpuinfo
114
 
    + linker in target_info is now a class
115
 
    * many many updates for m68k (will soon start to compile)
116
 
    - removed some ifdef or correct them for correct cpu
117
 
 
118
 
  Revision 1.1  2002/07/26 21:15:38  florian
119
 
    * rewrote the system handling
 
103
  Revision 1.7  2005/03/20 22:36:45  olle
 
104
    * Cleaned up handling of source file extension.
 
105
    + Added support for .p extension for macos and darwin
 
106
 
 
107
  Revision 1.6  2005/02/14 17:13:10  peter
 
108
    * truncate log
 
109
 
120
110
}