Browse Source

* set minimum compiler to compile the compiler to 3.2.0

florian 3 years ago
parent
commit
78f23a462e
1 changed files with 3 additions and 3 deletions
  1. 3 3
      compiler/pp.pas

+ 3 - 3
compiler/pp.pas

@@ -87,9 +87,9 @@ program pp;
 
 {$i fpcdefs.inc}
 
-{ Require at least 2.6.0 }
-{$if FPC_FULLVERSION<20600}
-  {$fatal At least FPC 2.6.0 is required to compile the compiler}
+{ Require at least 3.2.0 }
+{$if FPC_FULLVERSION<30200}
+  {$fatal At least FPC 3.2.0 is required to compile the compiler}
 {$endif}
 
 { exactly one target CPU must be defined }