Prechádzať zdrojové kódy

2002-04-08 Nick Drochak <[email protected]>

	* System.build: Build System.dll with mono's corlib.dll and
	System.Xml.dll.

svn path=/trunk/mcs/; revision=3686
Nick Drochak 24 rokov pred
rodič
commit
ed6b45e2ca

+ 5 - 0
mcs/class/System/ChangeLog

@@ -1,3 +1,8 @@
+2002-04-08  Nick Drochak  <[email protected]>
+
+	* System.build: Build System.dll with mono's corlib.dll and 
+	System.Xml.dll.
+
 2002-01-23  Dick Porter  <[email protected]>
 
 	* System.build: Start build System.Net.Sockets.Socket.cs,

+ 5 - 0
mcs/class/System/System.build

@@ -10,6 +10,11 @@
 		<csc target="library" output="../lib/System.dll" debug="${debug}">
 			<arg value="/nowarn:1595"/>
 			<arg value="/unsafe"/>
+			<arg value="/nostdlib"/> 	<!-- don't reference mscorlib -->
+			<arg value="/noconfig"/>	<!-- don't reference ms assemblies -->
+			<arg value="/lib:../lib/"/>
+			<arg value="/r:corlib.dll"/>
+			<arg value="/r:System.Xml.dll"/>
 			<sources>
 				<includes name="**/*.cs"/> 
 				<excludes name="Test/**"/>