Author: sserapion Date: Sun Sep 28 03:47:44 2008 New Revision: 36562
URL: http://svn.reactos.org/svn/reactos?rev=36562&view=rev Log: Work around bug 3746. Use arch specific def files.
Added: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-amd64.def (with props) branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-i386.def (with props) Removed: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos.def Modified: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup.rbuild
Added: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-amd64.def URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/de... ============================================================================== --- branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-amd64.def (added) +++ branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-amd64.def [iso-8859-1] Sun Sep 28 03:47:44 2008 @@ -1,0 +1,20 @@ +EXPORTS +DbgBreakPoint +DbgBreakPointWithStatus +DbgPrint +DbgPrompt +DbgPrintEx +RtlAssert +RtlUnwind + +;EOF +EXPORTS +DbgBreakPoint +DbgBreakPointWithStatus +DbgPrint +DbgPrompt +DbgPrintEx +RtlAssert +RtlUnwind + +;EOF
Propchange: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-amd64.def ------------------------------------------------------------------------------ svn:eol-style = native
Added: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-i386.def URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/de... ============================================================================== --- branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-i386.def (added) +++ branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-i386.def [iso-8859-1] Sun Sep 28 03:47:44 2008 @@ -1,0 +1,20 @@ +EXPORTS +DbgBreakPoint@0 +DbgBreakPointWithStatus@4 +DbgPrint +DbgPrompt@12 +DbgPrintEx +RtlAssert@16 +RtlUnwind@16 + +;EOF +EXPORTS +DbgBreakPoint@0 +DbgBreakPointWithStatus@4 +DbgPrint +DbgPrompt@12 +DbgPrintEx +RtlAssert@16 +RtlUnwind@16 + +;EOF
Propchange: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos-i386.def ------------------------------------------------------------------------------ svn:eol-style = native
Removed: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos.def URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/de... ============================================================================== --- branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos.def [iso-8859-1] (original) +++ branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup-ntos.def (removed) @@ -1,10 +1,0 @@ -EXPORTS -DbgBreakPoint@0 -DbgBreakPointWithStatus@4 -DbgPrint -DbgPrompt@12 -DbgPrintEx -RtlAssert@16 -RtlUnwind@16 - -;EOF
Modified: branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup.rbuild URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/lib/de... ============================================================================== --- branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup.rbuild [iso-8859-1] (original) +++ branches/ros-amd64-bringup/reactos/lib/debugsup/debugsup.rbuild [iso-8859-1] Sun Sep 28 03:47:44 2008 @@ -2,9 +2,9 @@ <!DOCTYPE group SYSTEM "../../tools/rbuild/project.dtd"> <group> <module name="debugsup_ntoskrnl" type="staticlibrary"> - <importlibrary definition="debugsup-ntos.def" dllname="ntoskrnl.exe" /> + <importlibrary definition="debugsup-ntos-$(ARCH).def" dllname="ntoskrnl.exe" /> </module> <module name="debugsup_ntdll" type="staticlibrary"> - <importlibrary definition="debugsup-ntos.def" dllname="ntdll.dll" /> + <importlibrary definition="debugsup-ntos-$(ARCH).def" dllname="ntdll.dll" /> </module> </group>