* Makefile: Install gmcs.exe.config file together with gmcs.exe.
authorLluis Sanchez <lluis@novell.com>
Thu, 22 Jul 2004 18:01:58 +0000 (18:01 -0000)
committerLluis Sanchez <lluis@novell.com>
Thu, 22 Jul 2004 18:01:58 +0000 (18:01 -0000)
* gmcs.exe.config: Renamed from mcs.exe.config. Added supportedRuntime
entry to make sure it runs in the correct runtime version.

svn path=/trunk/mcs/; revision=31381

mcs/gmcs/ChangeLog
mcs/gmcs/Makefile
mcs/gmcs/gmcs.exe.config [new file with mode: 0644]

index b5e0946d103f272531fa68919e636f5746512a76..db62a8e53b8913e49a99b73c2f2de0ad2550a581 100755 (executable)
@@ -1,3 +1,9 @@
+2004-07-21  Lluis Sanchez Gual  <lluis@novell.com>
+
+       * Makefile: Install gmcs.exe.config file together with gmcs.exe.
+       * gmcs.exe.config: Renamed from mcs.exe.config. Added supportedRuntime
+       entry to make sure it runs in the correct runtime version.
+       
 2004-07-18  Martin Baulig  <martin@ximian.com>
 
        * generic.cs (ConstructedType.CheckConstraints): Improved
index 8bb0bcdffb5f76ea0ea5eac523f223d360e28ea4..6fc8a2d768cb9ed9a72be87b3528bff2b195f456 100644 (file)
@@ -46,7 +46,7 @@ DISTFILES = \
        compiler.doc            \
        compiler.sln            \
        cs-parser.jay           \
-       mcs.exe.config          \
+       gmcs.exe.config         \
        NOTES                   \
        TODO
 #uncomment to enable some debug stuff
@@ -57,6 +57,7 @@ all-local: gmcs.exe
 install-local: gmcs.exe
        $(MKINSTALLDIRS) $(DESTDIR)$(prefix)/lib/mono/2.0
        $(INSTALL_BIN) gmcs.exe $(DESTDIR)$(prefix)/lib/mono/2.0
+       $(INSTALL_DATA) gmcs.exe.config $(DESTDIR)$(prefix)/lib/mono/2.0
 
 uninstall-local:
        -rm -f $(DESTDIR)$(prefix)/bin/mcs.exe
diff --git a/mcs/gmcs/gmcs.exe.config b/mcs/gmcs/gmcs.exe.config
new file mode 100644 (file)
index 0000000..16ccafe
--- /dev/null
@@ -0,0 +1,14 @@
+<configuration>\r
+       <startup>\r
+               <supportedRuntime version="v2.0.40607"/>\r
+       </startup>\r
+  <system.diagnostics>\r
+    <trace autoflush="true" indentsize="4">\r
+      <listeners>\r
+        <add name="compilerLogListener" type="System.Diagnostics.TextWriterTraceListener,System"\r
+             initializeData="mcs.log" />\r
+        <remove type="System.Diagnostics.DefaultTraceListener,System"/>\r
+      </listeners>\r
+    </trace>\r
+  </system.diagnostics>\r
+</configuration>\r