~ubuntu-branches/ubuntu/feisty/fpc/feisty

« back to all changes in this revision

Viewing changes to compiler/i386/cpuswtch.pas

  • Committer: Bazaar Package Importer
  • Author(s): Torsten Werner
  • Date: 2007-01-27 20:08:50 UTC
  • mfrom: (1.2.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20070127200850-9mrptaqqjsx9nwa7
Tags: 2.0.4-5
* Fixed Build-Depends.
* Add myself to Uploaders in debian/control.
* Make sure that the sources are really patched before building them.
* Build unit 'libc' on powerpc too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
{
2
 
    $Id: cpuswtch.pas,v 1.14 2005/02/14 17:13:09 peter Exp $
3
2
    Copyright (c) 1998-2002 by Florian Klaempfl, Pierre Muller
4
3
 
5
4
    interprets the commandline options which are i386 specific
59
58
                   end;
60
59
                 'a' :
61
60
                   begin
62
 
                     UpdateAlignmentStr(Copy(Opt,j+1,255),ParaAlignment);
 
61
                     if not(UpdateAlignmentStr(Copy(Opt,j+1,255),ParaAlignment)) then
 
62
                       IllegalPara(opt);
63
63
                     j:=length(Opt);
64
64
                   end;
65
65
                 'g' : initglobalswitches:=initglobalswitches+[cs_littlesize];
82
82
                           '2': initoptprocessor := ClassPentium;
83
83
                           '3': initoptprocessor := ClassPentium2;
84
84
                           '4': initoptprocessor := ClassPentium4;
 
85
                           '5': initoptprocessor := ClassPentiumM;
85
86
                           Else IllegalPara(Opt)
86
87
                         End;
87
88
                         Inc(j);
114
115
initialization
115
116
  coption:=toption386;
116
117
end.
117
 
{
118
 
  $Log: cpuswtch.pas,v $
119
 
  Revision 1.14  2005/02/14 17:13:09  peter
120
 
    * truncate log
121
 
 
122
 
}