diff dmd/backend/Configv.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children e28b18c23469
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dmd/backend/Configv.d	Sat Oct 24 08:42:06 2009 +0400
@@ -0,0 +1,19 @@
+module dmd.backend.Configv;
+
+import dmd.backend.LANG;
+
+// Configuration that is not saved in precompiled header
+
+struct Configv
+{
+    char addlinenumbers;	// put line number info in .OBJ file
+    char verbose;		// 0: compile quietly (no messages)
+				// 1: show progress to DLL (default)
+				// 2: full verbosity
+    char* csegname;		// code segment name
+    char* deflibname;		// default library name
+    LANG language;		// message language
+    int errmax;			// max error count
+}
+
+Configv configv;
\ No newline at end of file