summary refs log tree commit diff stats
path: root/nim/config.inc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2011-04-12 01:13:42 +0200
committerAraq <rumpf_a@web.de>2011-04-12 01:13:42 +0200
commitcd292568d775d55d9abb51e962882ecda12c03a9 (patch)
tree85451f0e1f17dc0463350915f12bdd0a82a73455 /nim/config.inc
parent46c41e43690cba9bc1caff6a994bb6915df8a1b7 (diff)
downloadNim-cd292568d775d55d9abb51e962882ecda12c03a9.tar.gz
big repo cleanup
Diffstat (limited to 'nim/config.inc')
-rwxr-xr-xnim/config.inc62
1 files changed, 0 insertions, 62 deletions
diff --git a/nim/config.inc b/nim/config.inc
deleted file mode 100755
index f73444a71..000000000
--- a/nim/config.inc
+++ /dev/null
@@ -1,62 +0,0 @@
-{$define debug}

-{.$define symtabdebug}

-// uncomment this code for debugging the symbol table

-// (shouldn't be used anymore; the symbol table is stable!)

-

-{$ifdef fpc}

-  {$inline on}

-  {$mode delphi}

-  {$define hasInline} // later versions of delphi have this too

-  {$implicitexceptions off} // produce better code

-  {$H+}

-  {$warnings off} // FPC produces way too many warnings ...

-{$else} // Delphi does not define these:

-  {$define delphi} // Delphi does not even define a symbol for its compiler!

-  {$define x86}

-  {$define cpu386}

-  {$define cpu387}

-  {$define cpu86}

-  {$define cpu87}

-  {$define cpui386}

-{$endif}

-

-{.$define GC} // Boehm's GC is broken again! (I don't need it much longer!)

-// define if we have a GC: if we have none, the compiler leaks memory,

-// but it still should work for bootstraping (the OS will clean up later)

-

-{$ifdef win32}

-  {$ifndef mswindows} {$define mswindows} {$endif}

-  {$ifndef windows} {$define windows} {$endif}

-{$endif}

-

-{$ifdef CPU386}

-  {$define I386} // Delphi does not define this!

-{$endif}

-

-{$ifdef CPUI386}

-  {$define I386}

-{$endif}

-

-{$ifdef CPUamd64}

-  {$define amd64}

-{$endif}

-

-{$ifdef debug}

-  {$define yamlgen} // when debugging we want the YAML code generator

-  {$R+} {$Q+}   // turn code generation checks on

-  {$ifndef fpc}

-    {$O-} // deactivate optimization for Delphi

-  {$endif}

-  {$C+}  // turn assertions on

-{$endif}

-

-{$define cgen}  // activate later if parser is stable

-{.$define vmgen} // vmgen is not up to date

-

-{$ifdef cpu64}

-  {$define bit64clean} // BUGFIX

-{$endif}

-{$ifdef fpc}

-  {$define bit64clean}

-{$endif}

-