Author: cfinck
Date: Sun Jun 21 02:49:31 2009
New Revision: 41496
URL: http://svn.reactos.org/svn/reactos?rev=41496&view=rev
Log:
Change -march to pentium3 as it was done for the build chain in RosBE-Windows 1.4.3.
The compiled binaries now require a CPU with real SSE support (Pentium III or later, Athlon XP or later)
Modified:
trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh
Modified: trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Windows/buildtoo…
==============================================================================
--- trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh [iso-8859-1] (original)
+++ trunk/tools/RosBE/RosBE-Windows/buildtoolchain.sh [iso-8859-1] Sun Jun 21 02:49:31 2009
@@ -17,7 +17,7 @@
#
# Constants
#
-CFLAGS="-march=i686 -O2"
+CFLAGS="-march=pentium3 -O2"
CXXFLAGS="$CFLAGS"
INSTALLDIR="/c/buildtoolchain/mingw"
LDFLAGS="-s"
Author: tkreuzer
Date: Sun Jun 21 00:53:47 2009
New Revision: 41495
URL: http://svn.reactos.org/svn/reactos?rev=41495&view=rev
Log:
Fix _WIN64 definition of PORT_MAXIMUM_MESSAGE_LENGTH in the NDK and only define it for NTOS_MODE_USER as it's also defined by wdm.h
Modified:
branches/ros-amd64-bringup/reactos/include/ndk/lpctypes.h
Modified: branches/ros-amd64-bringup/reactos/include/ndk/lpctypes.h
URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/inclu…
==============================================================================
--- branches/ros-amd64-bringup/reactos/include/ndk/lpctypes.h [iso-8859-1] (original)
+++ branches/ros-amd64-bringup/reactos/include/ndk/lpctypes.h [iso-8859-1] Sun Jun 21 00:53:47 2009
@@ -34,7 +34,13 @@
//
// Maximum message size that can be sent through an LPC Port without a section
//
-#define PORT_MAXIMUM_MESSAGE_LENGTH 256
+#ifdef NTOS_MODE_USER
+#ifdef _WIN64
+#define PORT_MAXIMUM_MESSAGE_LENGTH 512
+#else
+#define PORT_MAXIMUM_MESSAGE_LENGTH 256
+#endif
+#endif
//
// Port Object Access Masks