From 2b93790cf6223633afb3062ff95b4e4363a384c1 Mon Sep 17 00:00:00 2001 From: shefty Date: Mon, 3 Mar 2008 08:49:20 +0000 Subject: [PATCH] Winverbs branch - initial winverbs API and empty class declarations. git-svn-id: svn://openib.tc.cornell.edu/gen1@957 ad392aa1-c5ef-ae45-8dd8-e69d62a5ef86 --- branches/winverbs/BuildRelease.bat | 97 + branches/winverbs/buildchk_wlh_amd64.err | 405 ++ branches/winverbs/buildchk_wlh_amd64.log | 6391 +++++++++++++++++++++ branches/winverbs/buildchk_wlh_amd64.wrn | 103 + branches/winverbs/buildchk_wnet_AMD64.err | 3 + branches/winverbs/buildchk_wnet_AMD64.log | 233 + branches/winverbs/buildchk_wnet_AMD64.wrn | 2 + branches/winverbs/buildchk_wnet_x86.err | 3 + branches/winverbs/buildchk_wnet_x86.log | 228 + branches/winverbs/dirs | 6 + 10 files changed, 7471 insertions(+) create mode 100644 branches/winverbs/BuildRelease.bat create mode 100644 branches/winverbs/buildchk_wlh_amd64.err create mode 100644 branches/winverbs/buildchk_wlh_amd64.log create mode 100644 branches/winverbs/buildchk_wlh_amd64.wrn create mode 100644 branches/winverbs/buildchk_wnet_AMD64.err create mode 100644 branches/winverbs/buildchk_wnet_AMD64.log create mode 100644 branches/winverbs/buildchk_wnet_AMD64.wrn create mode 100644 branches/winverbs/buildchk_wnet_x86.err create mode 100644 branches/winverbs/buildchk_wnet_x86.log create mode 100644 branches/winverbs/dirs diff --git a/branches/winverbs/BuildRelease.bat b/branches/winverbs/BuildRelease.bat new file mode 100644 index 00000000..09331b29 --- /dev/null +++ b/branches/winverbs/BuildRelease.bat @@ -0,0 +1,97 @@ +@echo off +setlocal +rem +rem EXAMPLE - Build entire openIB-windows release & WIX installers (.msi) files. +rem Binary release is constructed in ..\Branches\WinOF\Wix\bin. +rem Processor architecture specific WIX installers are constructed in %IDIR% +rem +rem This script is an 'example' of a one-command entire IB stack build to single-file installer. +rem Script is designed to be invoked from the ...\gen1\trunk folder with ..\branches\WinOF\Wix\* +rem accessible. +rem +rem Verify the following env vars are suitible for your system configuration. +rem _DDK, _PSDK, SVN, IDIR + +rem Standard install of Windows Server 2003 DDK +set _DDK=C:\WINDDK\3790~1.183 + +rem Platform SDK path +set _PSDK=C:\Program Files (x86)\Microsoft Visual Studio 8\VC\PlatformSDK + +rem WARNING - SVN set depends on the path '\openIB-windows-svn\xxx\gen1', where SVN is set to XXX +rem substring[23rd...25th] chars (offset counting) == xxx + +rem If this example method doesn't fit your environment, set SVN accordingly. +rem Note - OPENIB_REV is assigned SVN in a child script. + +set SVN=%CD:~22,3% + +rem assumes %CD% == '...\gen1\trunk' + +set BSE=%CD% +set RBIN=%BSE% +set RBIN=%RBIN:trunk=Branches\WinOF\Wix\bin% + +rem WIX Installer files (.msi) destination folder - set for local environment. +rem +rem set IDIR=D:\temp +set IDIR=C:\Windows\Temp + +echo Building for OPENIB_REV %SVN%, installer files @ %IDIR% +timeout /T 5 + +if NOT EXIST "%IDIR%" ( + echo Missing Installer file destination folder %IDIR% + exit /B 1 +) + +rem Verify WIX 2.0 toolset is available - if not, download from +rem http://sourceforge.net/project/showfiles.php?group_id=105970&package_id=114109 +rem select wix-2.0.5325.0-binaries.zip download and unzip to +rem ..\branches\WinOF\WIX\WIX_tools\ +rem +if NOT EXIST ..\branches\WinOF\WIX\WIX_tools\wix-2.0.5325.0-binaries ( + echo Missing WIX tools @ ..\branches\WinOF\WIX\WIX_tools + exit /B 1 +) + +if NOT EXIST etc\makebin.bat ( + echo Missing etc\makebin.bat, script must run from gen1\trunk + exit /B 1 +) + +%COMSPEC% /C "call %BSE%\etc\IB_CHK_BLD_x64.bat %SVN% %CD% %_DDK% '%_PSDK%' & build -wgM 3" +if ERRORLEVEL 1 exit /B 1 +%COMSPEC% /C "call %BSE%\etc\IB_FRE_BLD_x64.bat %SVN% %CD% %_DDK% '%_PSDK%' & build -wgM 3" +if ERRORLEVEL 1 exit /B 1 + +%COMSPEC% /C "call %BSE%\etc\IB_CHK_BLD_x86.bat %SVN% %CD% %_DDK% '%_PSDK%' & build -wgM 3" +if ERRORLEVEL 1 exit /B 1 +%COMSPEC% /C "call %BSE%\etc\IB_FRE_BLD_x86.bat %SVN% %CD% %_DDK% '%_PSDK%' & build -wgM 3" +if ERRORLEVEL 1 exit /B 1 + +%COMSPEC% /C "call %BSE%\etc\IB_CHK_BLD_IA64.bat %SVN% %CD% %_DDK% '%_PSDK%' & build -wgM 3" +if ERRORLEVEL 1 exit /B 1 +%COMSPEC% /C "call %BSE%\etc\IB_FRE_BLD_IA64.bat %SVN% %CD% %_DDK% '%_PSDK%' & build -wgM 3" +if ERRORLEVEL 1 exit /B 1 + +rem :InstallBin +rem Create binary release tree - suitible for WinOF-WIX installer build. + +if EXIST "%RBIN%" ( + rmdir /S /Q %RBIN% +) +mkdir %RBIN% + +if EXIST "%BSE%\etc\makebin.bat" ( + call %BSE%\etc\makebin.bat %BSE% %RBIN% +) + +echo Binary release built in %RBIN% + +rem build WIX installers --> in D:\temp + +%COMSPEC% /C "%_DDK%\bin\setenv.bat %_DDK% fre AMD64 WNET & cd /D %RBIN%\.. & buildall %IDIR%" + +endlocal +@echo on diff --git a/branches/winverbs/buildchk_wlh_amd64.err b/branches/winverbs/buildchk_wlh_amd64.err new file mode 100644 index 00000000..e28a2a43 --- /dev/null +++ b/branches/winverbs/buildchk_wlh_amd64.err @@ -0,0 +1,405 @@ +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel + +Only one .rc file is allowed per directory. You may however #include one .rc file in another. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\flint\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mst\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\spark\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\nsc +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\complib\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\complib.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\complib\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\al\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\al_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\al\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\wv_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udat_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udat_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_scm_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\uvpd_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\mlnx_uvp.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user) +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDLL=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\ibinstaller.rc(40) : error RC1015: cannot open include file 'afxres.h'. +link : error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.res' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2169: '_strset' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2085: '_Str' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2169: 'strcpy' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2169: 'strcat' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2085: 'strnlen_s' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ';' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(81) : error C2143: syntax error : missing ';' before '{' +c:\winddk\6001.18000\inc\crt\string.h(82) : error C2065: '_MaxCount' : undeclared identifier +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C1003: error count exceeds 100; stopping compilation +link : error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\installsp.obj' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\flint\user +c:\winddk\6001.18000\bin\makefile.new(2777) : error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\flint\user - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\flint\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mst\user +c:\winddk\6001.18000\bin\makefile.new(2777) : error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\mst\user - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mst\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\spark\user +c:\winddk\6001.18000\bin\verify.src(51) : error U1050: BLD1003 : STL lib listed explicitly - use USE_STL=1 (c:\mshefty\scm\winof\branches\winverbs\tools\spark\user) +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\spark\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\nsc +c:\winddk\6001.18000\bin\makefile.new(2777) : error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\nsc - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\nsc +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\alts\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\alts\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2169: '_strset' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2085: '_Str' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2169: 'strcpy' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2169: 'strcat' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2085: 'strnlen_s' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ';' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(81) : error C2143: syntax error : missing ';' before '{' +c:\winddk\6001.18000\inc\crt\string.h(82) : error C2065: '_MaxCount' : undeclared identifier +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C1003: error count exceeds 100; stopping compilation +link : error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64\printip.obj' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\limits\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\limits\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + diff --git a/branches/winverbs/buildchk_wlh_amd64.log b/branches/winverbs/buildchk_wlh_amd64.log new file mode 100644 index 00000000..d8d0a1b1 --- /dev/null +++ b/branches/winverbs/buildchk_wlh_amd64.log @@ -0,0 +1,6391 @@ +BUILD: Computing Include file dependencies: +BUILD: Examining c:\mshefty\scm\winof\branches\winverbs directory tree for files to compile. +BUILD: null byte at offset 0x00000001 +BUILD: 1850 null bytes in file +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel + +Only one .rc file is allowed per directory. You may however #include one .rc file in another. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\flint\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mst\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\spark\user +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\nsc +use_crtdll is not supported. Use USE_MSVCRT=1 instead. + +skipping post pass 0 command +Compiling c:\mshefty\scm\winof\branches\winverbs\core\complib\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\complib\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\complib\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\complib\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\core\complib\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_CL_SYMBOLS + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\cl_async_proc.c ..\cl_list.c ..\cl_map.c ..\cl_memory.c ..\cl_obj.c ..\cl_perf.c ..\cl_pool.c ..\cl_ptr_vector.c ..\cl_reqmgr.c ..\cl_statustext.c ..\cl_threadpool.c ..\cl_vector.c +cl_async_proc.c +cl_list.c +cl_map.c +cl_memory.c +cl_obj.c +cl_perf.c +cl_pool.c +cl_ptr_vector.c +cl_reqmgr.c +cl_statustext.c +cl_threadpool.c +cl_vector.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\complib\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\complib\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\core\complib\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_CL_SYMBOLS + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\cl_debug.c .\cl_dll.c .\cl_event.c .\cl_log.c .\cl_memory_osd.c .\cl_syscallback.c .\cl_thread.c .\cl_timer.c +cl_debug.c +cl_dll.c +cl_event.c +cl_log.c +cl_memory_osd.c +cl_syscallback.c +cl_thread.c +cl_timer.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\complib.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\complib\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\complib.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\complib\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\cl_async_proc.c ..\cl_list.c ..\cl_map.c ..\cl_memory.c ..\cl_obj.c ..\cl_perf.c ..\cl_pool.c ..\cl_ptr_vector.c ..\cl_reqmgr.c ..\cl_statustext.c ..\cl_threadpool.c ..\cl_vector.c +cl_async_proc.c +cl_list.c +cl_map.c +cl_memory.c +cl_obj.c +cl_perf.c +cl_pool.c +cl_ptr_vector.c +cl_reqmgr.c +cl_statustext.c +cl_threadpool.c +cl_vector.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\cl_driver.c .\cl_event.c .\cl_log.c .\cl_memory_osd.c .\cl_syscallback.c .\cl_thread.c .\cl_timer.c .\cl_pnp_po.c .\cl_bus_ifc.c +cl_driver.c +cl_event.c +cl_log.c +cl_memory_osd.c +cl_syscallback.c +cl_thread.c +cl_timer.c +cl_pnp_po.c +cl_bus_ifc.c + link.exe /lib /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib /IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 /WX /nodefaultlib /machine:amd64 /ltcg @c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\lib.rsp +Microsoft (R) Library Manager Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_async_proc.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_list.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_map.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_memory.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_obj.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_perf.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_pool.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_ptr_vector.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_reqmgr.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_statustext.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_threadpool.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_vector.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_driver.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_event.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_log.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_memory_osd.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_syscallback.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_thread.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_timer.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_pnp_po.obj +c:\mshefty\scm\winof\branches\winverbs\core\complib\kernel\objchk_wlh_amd64\amd64\cl_bus_ifc.obj +Compiling c:\mshefty\scm\winof\branches\winverbs\core\al\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\al\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\al\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\al\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\core\al\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_AL_SYMBOLS + -DCL_NO_TRACK_MEM + -DWPP_OLDCC + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\al.c ..\al_av.c ..\al_ca.c ..\al_ci_ca_shared.c ..\al_cm_qp.c ..\al_common.c ..\al_cq.c ..\al_dm.c ..\al_init.c ..\al_mad.c ..\al_mcast.c ..\al_mgr_shared.c ..\al_mr_shared.c ..\al_mw.c ..\al_pd.c ..\al_qp.c ..\al_query.c ..\al_reg_svc.c ..\al_res_mgr.c ..\al_srq.c ..\al_sub.c ..\ib_common.c ..\ib_statustext.c +al.c +al_av.c +al_ca.c +al_ci_ca_shared.c +al_cm_qp.c +al_common.c +al_cq.c +al_dm.c +al_init.c +al_mad.c +al_mcast.c +al_mgr_shared.c +al_mr_shared.c +al_mw.c +al_pd.c +al_qp.c +al_query.c +al_reg_svc.c +al_res_mgr.c +al_srq.c +Compiling... +al_sub.c +ib_common.c +ib_statustext.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\al\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\al\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\core\al\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_AL_SYMBOLS + -DCL_NO_TRACK_MEM + -DWPP_OLDCC + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\al_dll.c .\al_mad_pool.c .\ual_av.c .\ual_ca.c .\ual_ci_ca.c .\ual_cm_cep.c .\ual_cq.c .\ual_dm.c .\ual_mad.c .\ual_mad_pool.c .\ual_mcast.c .\ual_mgr.c .\ual_mr.c .\ual_mw.c .\ual_pd.c .\ual_pnp.c .\ual_qp.c .\ual_query.c .\ual_reg_svc.c .\ual_sa_req.c .\ual_srq.c .\ual_sub.c +al_dll.c +al_mad_pool.c +ual_av.c +ual_ca.c +ual_ci_ca.c +ual_cm_cep.c +ual_cq.c +ual_dm.c +ual_mad.c +ual_mad_pool.c +ual_mcast.c +ual_mgr.c +ual_mr.c +ual_mw.c +ual_pd.c +ual_pnp.c +ual_qp.c +ual_query.c +ual_reg_svc.c +ual_sa_req.c +Compiling... +ual_srq.c +ual_sub.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\al_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\al\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\al_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\al\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\core\al\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ibal.dll""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\ibal.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK -DDRIVER -DDEPRECATE_DDK_FUNCTIONS -DEXPORT_AL_SYMBOLS /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\inc /I..\..\..\inc\kernel /Ic:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\ibal.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -DEXPORT_AL_SYMBOLS + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\al.c ..\al_av.c ..\al_ca.c ..\al_ci_ca_shared.c ..\al_cm_qp.c ..\al_common.c ..\al_cq.c ..\al_dm.c ..\al_init.c ..\al_mad.c ..\al_mcast.c ..\al_mgr_shared.c ..\al_mr_shared.c ..\al_mw.c ..\al_pd.c ..\al_qp.c ..\al_query.c ..\al_reg_svc.c ..\al_res_mgr.c ..\al_srq.c ..\al_sub.c ..\ib_common.c ..\ib_statustext.c +al.c +al_av.c +al_ca.c +al_ci_ca_shared.c +al_cm_qp.c +al_common.c +al_cq.c +al_dm.c +al_init.c +al_mad.c +al_mcast.c +al_mgr_shared.c +al_mr_shared.c +al_mw.c +al_pd.c +al_qp.c +al_query.c +al_reg_svc.c +al_res_mgr.c +al_srq.c +Compiling... +al_sub.c +ib_common.c +ib_statustext.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -DEXPORT_AL_SYMBOLS + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\al_ca_pnp.c .\al_ci_ca.c .\al_cm_cep.c .\al_dev.c .\al_ioc_pnp.c .\al_mad_pool.c .\al_fmr_pool.c .\al_mgr.c .\al_mr.c .\al_pnp.c .\al_proxy.c .\al_proxy_cep.c .\al_proxy_ioc.c .\al_proxy_subnet.c .\al_proxy_verbs.c .\al_proxy_ndi.c .\al_ndi_cq.c .\al_ndi_cm.c .\al_sa_req.c .\al_smi.c +al_ca_pnp.c +al_ci_ca.c +al_cm_cep.c +al_dev.c +al_ioc_pnp.c +al_mad_pool.c +al_fmr_pool.c +al_mgr.c +al_mr.c +al_pnp.c +al_proxy.c +al_proxy_cep.c +al_proxy_ioc.c +al_proxy_subnet.c +al_proxy_verbs.c +al_proxy_ndi.c +al_ndi_cq.c +al_ndi_cm.c +al_sa_req.c +al_smi.c + link.exe /lib /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibal.lib /IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 /WX /nodefaultlib /machine:amd64 /ltcg @c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\lib.rsp +Microsoft (R) Library Manager Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_av.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ca.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ci_ca_shared.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_cm_qp.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_common.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_cq.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_dm.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_init.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mad.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mcast.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mgr_shared.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mr_shared.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mw.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_pd.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_qp.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_query.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_reg_svc.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_res_mgr.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_srq.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_sub.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\ib_common.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\ib_statustext.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ca_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ci_ca.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_cm_cep.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_dev.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ioc_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mad_pool.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_fmr_pool.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mgr.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_mr.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_proxy.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_proxy_cep.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_proxy_ioc.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_proxy_subnet.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_proxy_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_proxy_ndi.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ndi_cq.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_ndi_cm.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_sa_req.obj +c:\mshefty\scm\winof\branches\winverbs\core\al\kernel\objchk_wlh_amd64\amd64\al_smi.obj +Compiling c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\core\winverbs\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_WV_SYMBOLS + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\wv_dll.cpp .\wv_provider.cpp +wv_dll.cpp +wv_provider.cpp +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\wv_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\wv_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(57) : fatal error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libvendor +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(57) : fatal error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\libopensm +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /Iwindows + /I..\common + /I..\include + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_DAT_SYMBOLS + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\udat.c .\udat_sr_parser.c .\udat_sources.c +udat.c +udat_sr_parser.c +udat_sources.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udat_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udat_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\include + /I..\common + /Iwindows + /I..\ibal + /I..\..\dat\include + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_DAPL_SYMBOLS + -D_VENDOR_IBAL_ + -DDAPL_MERGE_CM_DTO + -DDAPL_DBG + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\dapl_init.c .\dapl_name_service.c .\dapl_timer_util.c .\udapl_sources.c +dapl_init.c +dapl_name_service.c +dapl_timer_util.c +udapl_sources.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /Iwindows + /I..\common + /I..\include + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W1 + /wd4113 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_DAT_SYMBOLS + -DDAT_EXTENSIONS=1 + /W1 + /wd4113 + /Wp64 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\udat.c .\udat_api.c .\udat_sr_parser.c .\udat_sources.c +udat.c +udat_api.c +udat_sr_parser.c +udat_sources.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udat_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udat_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\include + /I..\common + /Iwindows + /I..\ibal + /I..\..\dat\include + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W1 + /wd4113 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_DAPL_SYMBOLS + -D_VENDOR_IBAL_ + -DDAPL_MERGE_CM_DTO + -DDAT_EXTENSIONS=1 + -DDAPL_DBG + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\dapl_cno_create.c .\dapl_cno_free.c .\dapl_cno_modify_agent.c .\dapl_cno_query.c .\dapl_cno_wait.c .\dapl_evd_clear_unwaitable.c .\dapl_evd_create.c .\dapl_evd_disable.c .\dapl_evd_enable.c .\dapl_evd_modify_cno.c .\dapl_evd_query.c .\dapl_evd_set_unwaitable.c .\dapl_evd_wait.c .\dapl_init.c .\dapl_lmr_create.c .\udapl_sources.c +dapl_cno_create.c +dapl_cno_free.c +dapl_cno_modify_agent.c +dapl_cno_query.c +dapl_cno_wait.c +dapl_evd_clear_unwaitable.c +dapl_evd_create.c +dapl_evd_disable.c +dapl_evd_enable.c +dapl_evd_modify_cno.c +dapl_evd_query.c +dapl_evd_set_unwaitable.c +dapl_evd_wait.c +dapl_init.c +dapl_lmr_create.c +udapl_sources.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\include + /I..\common + /I..\udapl-scm + /I..\udapl + /I..\udapl\windows + /I..\ibal-scm + /I..\ibal + /I..\..\dat\include + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W1 + /wd4113 + /Wp64 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DEXPORT_DAPL_SYMBOLS + -D_VENDOR_IBAL_ + -DDAPL_MERGE_CM_DTO + -DDAT_EXTENSIONS=1 + -DSOCK_CM=1 + -DDAPL_DBG + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\udapl_sources.c +udapl_sources.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_scm_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\udapl_scm_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /IC:\WinDDK\6001.18000\inc\ddk + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DCL_NO_TRACK_MEM + -DPERFMON_ENABLED + -DWPP_OLDCC + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\extensions.c .\ib_cm.c .\ibsp_iblow.c .\ibsp_ip.c .\ibsp_mem.c .\ibsp_pnp.c .\ibspdebug.c .\ibspdll.c .\misc.c .\sockinfo.c .\ibsp_duplicate.c .\ibsp_perfmon.c +extensions.c +ib_cm.c +ibsp_iblow.c +ibsp_ip.c +ibsp_mem.c +ibsp_pnp.c +ibspdebug.c +ibspdll.c +misc.c +sockinfo.c +ibsp_duplicate.c +ibsp_perfmon.c + link.exe /lib /out:..\..\..\bin\user\objchk_wlh_amd64\amd64\ibwsd.lib @c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\lib.rsp +Microsoft (R) Library Manager Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/WX +/nodefaultlib +/machine:amd64 +/ltcg +/def:ibspdll.def +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\extensions.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ib_cm.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibsp_iblow.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibsp_ip.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibsp_mem.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibsp_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibspdebug.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibspdll.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\misc.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\sockinfo.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibsp_duplicate.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibsp_perfmon.obj + Creating library ..\..\..\bin\user\objchk_wlh_amd64\amd64\ibwsd.lib and object ..\..\..\bin\user\objchk_wlh_amd64\amd64\ibwsd.exp +Compiling c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I..\..\user + /I..\mlxsys\tools + /I..\tavor_arch_db + /I..\Hca\verbs + /I..\Hca\verbs\common + /I..\mlxsys\mpga\os_dep\win + /I..\mlxsys\mpga + /I..\mlxsys\mtl_types + /I..\mlxsys\mtl_types\win + /I..\mlxsys\mtl_types\win\win + /I..\mlxsys\mtl_common\os_dep\win + /I..\mlxsys\mtl_common + /I..\mlxsys\mosal + /I..\mlxsys\mosal\os_dep\win + /I..\Hca\hcahal + /I..\hca\hcahal\tavor + /I..\hca\hcahal\tavor\os_dep\win + /I..\hca\hcahal\tavor\thhul_hob + /I..\hca\hcahal\tavor\thhul_pdm + /I..\hca\hcahal\tavor\thhul_cqm + /I..\hca\hcahal\tavor\thhul_qpm + /I..\hca\hcahal\tavor\thhul_srqm + /I..\hca\hcahal\tavor\thhul_mwm + /I..\hca\hcahal\tavor\thh_hob + /I..\hca\hcahal\tavor\thh_srqm + /I..\hca\hcahal\tavor\thh_qpm + /I..\hca\hcahal\tavor\thh_cqm + /I..\hca\hcahal\tavor\util + /I..\hca\hcahal\tavor\uar + /I..\hca\hcahal\tavor\uldm + /I..\hca\hcahal\tavor\udavm + /I..\hca\hcahal\tavor\eventp + /I..\hca\hcahal\tavor\mrwm + /I..\hca\hcahal\tavor\mcgm + /I..\hca\hcahal\tavor\ddrmm + /I..\hca\hcahal\tavor\cmdif + /I..\mlxsys\os_dep\win\tdriver + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /I..\..\..\..\core\al + /I. + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DUMT23108_EXPORTS + -DIVAPI_THH + -DMT_LITTLE_ENDIAN + -D__WIN__ + -D__MSC__ + -D__LITTLE_ENDIAN + -D__DLL_EXPORTS__ + -Di386 + -DCL_NO_TRACK_MEM + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\mtl_common_ul_sources.c .\mosal_ul_sources.c .\mpga_ul_sources.c .\hh_ul_sources.c .\thhul_ul_sources.c .\vapi_common_ul_sources.c +mtl_common_ul_sources.c +***** The code is being built for __amd64__ architecture ***** +mosal_ul_sources.c +mpga_ul_sources.c +hh_ul_sources.c +thhul_ul_sources.c +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2226) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2226) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2227) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2227) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2355) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2355) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2375) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2375) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2705) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2705) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +vapi_common_ul_sources.c + link.exe /lib /out:..\..\..\..\bin\user\objchk_wlh_amd64\amd64\vapi.lib /IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 /WX /nodefaultlib /machine:amd64 /ltcg @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\lib.rsp +Microsoft (R) Library Manager Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\mtl_common_ul_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\mosal_ul_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\mpga_ul_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\hh_ul_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\thhul_ul_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user\objchk_wlh_amd64\amd64\vapi_common_ul_sources.obj +Compiling c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel: TARGETPATH is ..\..\..\..\bin\kernel\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I. + /I..\..\kernel + /I..\..\..\..\inc + /I..\..\..\..\inc\kernel + /I..\mlxsys\tools + /I..\tavor_arch_db + /I..\Hca\verbs + /I..\Hca\verbs\common + /I..\mlxsys\mpga\os_dep\win + /I..\mlxsys\mpga + /I..\mlxsys\mtl_types + /I..\mlxsys\mtl_types\win + /I..\mlxsys\mtl_types\win\win + /I..\mlxsys\mtl_common + /I..\mlxsys\mtl_common\os_dep\win + /I..\mlxsys\mosal + /I..\mlxsys\mosal\os_dep\win + /I..\Hca\hcahal + /I..\hca\hcahal\tavor + /I..\hca\hcahal\tavor\util + /I..\hca\hcahal\tavor\thh_hob + /I..\hca\hcahal\tavor\cmdif + /I..\hca\hcahal\tavor\eventp + /I..\hca\hcahal\tavor\uar + /I..\hca\hcahal\tavor\mrwm + /I..\hca\hcahal\tavor\thh_cqm + /I..\hca\hcahal\tavor\udavm + /I..\hca\hcahal\tavor\mcgm + /I..\hca\hcahal\tavor\ddrmm + /I..\hca\hcahal\tavor\thh_qpm + /I..\hca\hcahal\tavor\thh_srqm + /I..\hca\hcahal\tavor\uldm + /I..\hca\hcahal\tavor\thhul_hob + /I..\hca\hcahal\tavor\thhul_pdm + /I..\hca\hcahal\tavor\thhul_cqm + /I..\hca\hcahal\tavor\thhul_qpm + /I..\hca\hcahal\tavor\thhul_mwm + /I..\hca\hcahal\tavor\thhul_srqm + /I..\hca\hcahal\tavor\os_dep\win + /I..\mlxsys\os_dep\win\tdriver + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DDRIVER + -D__MSC__ + -D__KERNEL__ + -DMT_KERNEL + -D__WIN__ + -D__LITTLE_ENDIAN + -DMT_LITTLE_ENDIAN + -DMAX_ERROR=4 + -DIVAPI_THH + -DMTL_MODULE=MDT + -DUSE_MOSAL + -DMT_BUILD_LIB + -D__DLL_EXPORTS__ + -DUSE_KMUTEX + -DSIMULTANUOUS_DPC + -DMAP_PHYS_ADDR_VIA_KERNEL + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\mtl_common_kl_sources.c .\mosal_kl_sources.c .\mpga_kl_sources.c .\hh_kl_sources.c .\thh_kl_sources.c .\thhul_kl_sources.c .\vapi_common_kl_sources.c .\tdriver_sources.c +mtl_common_kl_sources.c +***** The code is being built for __amd64__ architecture ***** +mosal_kl_sources.c +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_sync.c(593) : warning C4996: 'RtlEnlargedIntegerMultiply' was declared deprecated +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_sync.c(593) : warning C4996: 'RtlEnlargedIntegerMultiply' was declared deprecated + c:\winddk\6001.18000\inc\ddk\wdm.h(7643) : see declaration of 'RtlEnlargedIntegerMultiply' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_sync.c(617) : warning C4996: 'RtlEnlargedIntegerMultiply' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_sync.c(617) : warning C4996: 'RtlEnlargedIntegerMultiply' was declared deprecated + c:\winddk\6001.18000\inc\ddk\wdm.h(7643) : see declaration of 'RtlEnlargedIntegerMultiply' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(69) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(69) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(9015) : see declaration of 'HalGetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(102) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(102) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(9015) : see declaration of 'HalGetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(119) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(119) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(9015) : see declaration of 'HalGetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(139) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(139) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(9015) : see declaration of 'HalGetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(160) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(160) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(9015) : see declaration of 'HalGetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(178) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(178) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(8950) : see declaration of 'HalSetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(195) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(195) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(8950) : see declaration of 'HalSetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(216) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(216) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(8950) : see declaration of 'HalSetBusDataByOffset' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(237) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(237) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated + c:\winddk\6001.18000\inc\ddk\ntddk.h(8950) : see declaration of 'HalSetBusDataByOffset' +mpga_kl_sources.c +hh_kl_sources.c +thh_kl_sources.c +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(599) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(599) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(600) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(600) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1005) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1005) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1005) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1005) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1007) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1007) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1013) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1013) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +thhul_kl_sources.c +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_pdm\thhul_pdm.c(161) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_pdm\thhul_pdm.c(161) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2226) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2226) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2227) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2227) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2355) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2355) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2375) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2375) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2705) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2705) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +vapi_common_kl_sources.c +tdriver_sources.c + link.exe /lib /out:..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.lib @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\lib.rsp +Microsoft (R) Library Manager Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/WX +/nodefaultlib +/machine:amd64 +/ltcg +/def:mt23108.def +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mtl_common_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mosal_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mpga_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\hh_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\thh_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\thhul_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\vapi_common_kl_sources.obj c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\tdriver_sources.obj + Creating library ..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.lib and object ..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.exp +Compiling c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.\ + /I..\..\..\inc + /I..\..\..\inc\user + /I..\vapi\mlxsys\tools + /I..\vapi\Hca\verbs + /I..\vapi\Hca\hcahal + /I..\vapi\mlxsys\mtl_common + /I..\vapi\mlxsys\mtl_common\os_dep\win + /I..\vapi\mlxsys\mosal + /I..\vapi\mlxsys\mosal\os_dep\win + /I..\vapi\mlxsys\mtl_types + /I..\vapi\mlxsys\mtl_types\win + /I..\vapi\mlxsys\mtl_types\win\win + /I..\vapi\mlxsys\mtl_types\win\win32 + /I..\vapi\Hca\hcahal\tavor + /I..\vapi\Hca\hcahal\tavor\util + /I..\vapi\Hca\hcahal\tavor\thhul_hob + /I..\vapi\Hca\hcahal\tavor\thhul_pdm + /I..\vapi\Hca\hcahal\tavor\thhul_cqm + /I..\vapi\Hca\hcahal\tavor\thhul_qpm + /I..\vapi\Hca\hcahal\tavor\thhul_mwm + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DIVAPI_THH + /DCL_NO_TRACK_MEM + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\mlnx_ual_av.c .\mlnx_ual_ca.c .\mlnx_ual_cq.c .\mlnx_ual_main.c .\mlnx_ual_mcast.c .\mlnx_ual_mrw.c .\mlnx_ual_osbypass.c .\mlnx_ual_pd.c .\mlnx_ual_qp.c +mlnx_ual_av.c +mlnx_ual_ca.c +mlnx_ual_cq.c +mlnx_ual_main.c +mlnx_ual_mcast.c +mlnx_ual_mrw.c +mlnx_ual_osbypass.c +mlnx_ual_pd.c +mlnx_ual_qp.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\uvpd_exports.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\uvpd_exports.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc\user + /I..\..\..\inc\complib + /I..\..\..\inc\user\complib + /I..\..\..\inc + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DCL_NO_TRACK_MEM + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\mt_utils.c +mt_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc\user + /I..\..\..\inc\complib + /I..\..\..\inc\user\complib + /I..\..\..\inc + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DCL_NO_TRACK_MEM + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\mlnx_ual_av.c .\mlnx_ual_ca.c .\mlnx_ual_cq.c .\mlnx_ual_main.c .\mlnx_ual_mcast.c .\mlnx_ual_mrw.c .\mlnx_ual_osbypass.c .\mlnx_ual_pd.c .\mlnx_ual_qp.c .\mlnx_ual_srq.c .\mlnx_uvp_debug.c .\mlnx_uvp.c .\mlnx_uvp_ah.c .\mlnx_uvp_cq.c .\mlnx_uvp_memfree.c .\mlnx_uvp_qp.c .\mlnx_uvp_srq.c .\mlnx_uvp_verbs.c +mlnx_ual_av.c +mlnx_ual_ca.c +mlnx_ual_cq.c +mlnx_ual_main.c +mlnx_ual_mcast.c +mlnx_ual_mrw.c +mlnx_ual_osbypass.c +mlnx_ual_pd.c +mlnx_ual_qp.c +mlnx_ual_srq.c +mlnx_uvp_debug.c +mlnx_uvp.c +mlnx_uvp_ah.c +mlnx_uvp_cq.c +mlnx_uvp_memfree.c +mlnx_uvp_qp.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\mlnx_uvp_qp.c(991) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\mlnx_uvp_qp.c(991) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +mlnx_uvp_srq.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\mlnx_uvp_srq.c(316) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\mlnx_uvp_srq.c(316) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +mlnx_uvp_verbs.c +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\mlnx_uvp.def' +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user +NMAKE : fatal error U1073: don't know how to make 'objchk_wlh_amd64\amd64\mlnx_uvp.def' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 +cl.exe /Iamd64\ /I. /Ic:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 -DUNICODE -D_UNICODE /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 /c /Zc:wchar_t- /Zl /Zp8 /Gy /W4 /Wp64 /EHs-c- /GR- /GF /GS /Z7 /Od /Oi /GL /Z7 /DKMDF_MAJOR_VERSION=01 /DKMDF_MINOR_VERSION=007 /homeparams /FIC:\WinDDK\6001.18000\inc\api\warning.h /YlIbInstaller /Ycstdafx.h /Fpc:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.pch /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.obj" /Tp +#include "stdafx.h" +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl + /Iamd64\ + /I. + /Ic:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + -DUNICODE + -D_UNICODE + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + /YlIbInstaller /Ycstdafx.h /Fpc:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.pch /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.obj" +pch_hdr.src + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /Ic:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + -DUNICODE + -D_UNICODE + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + /Yustdafx.h + /Fpc:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.pch + .\ibinstaller.cpp +ibinstaller.cpp + link.exe /lib /out:..\..\..\bin\user\objchk_wlh_amd64\amd64\IbInstaller.lib @c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\lib.rsp +Microsoft (R) Library Manager Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/WX +/nodefaultlib +/machine:amd64 +/ltcg +/def:IbInstaller.def +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.obj +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.obj + Creating library ..\..\..\bin\user\objchk_wlh_amd64\amd64\IbInstaller.lib and object ..\..\..\bin\user\objchk_wlh_amd64\amd64\IbInstaller.exp +Compiling c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(57) : fatal error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user) +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS1 NOLINK=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\core\complib\user directory ************* +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\core\al\user directory ************* +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ibbus.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\ibbus.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG -DDRIVER -DDEPRECATE_DDK_FUNCTIONS -DNEED_CL_OBJ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\kernel /I..\..\al /I..\..\al\kernel /Ic:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\ibbus.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\kernel + /I..\..\al + /I..\..\al\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -DNEED_CL_OBJ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\bus_driver.c .\bus_pnp.c .\bus_port_mgr.c .\bus_iou_mgr.c +bus_driver.c +bus_pnp.c +bus_port_mgr.c +bus_iou_mgr.c + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibbus.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibbus.sys +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\ibbus.res +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_driver.obj +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_port_mgr.obj +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_iou_mgr.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibal.lib +bus_driver.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibbus.sys +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\ibbus.res +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_driver.obj +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_port_mgr.obj +c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel\objchk_wlh_amd64\amd64\bus_iou_mgr.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibal.lib +Generating code +Finished generating code +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ibiou.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\ibiou.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG -DDRIVER -DDEPRECATE_DDK_FUNCTIONS -DNEED_CL_OBJ -DWPP_OLDCC /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\kernel /Ic:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\ibiou.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -DNEED_CL_OBJ + -DWPP_OLDCC + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\iou_driver.c .\iou_pnp.c .\iou_ioc_mgr.c +iou_driver.c +iou_pnp.c +iou_ioc_mgr.c + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibiou.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibiou.sys +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\ibiou.res +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\iou_driver.obj +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\iou_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\iou_ioc_mgr.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +iou_driver.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibiou.sys +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\ibiou.res +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\iou_driver.obj +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\iou_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel\objchk_wlh_amd64\amd64\iou_ioc_mgr.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +Generating code +Finished generating code +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user directory ************* +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(57) : fatal error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(57) : fatal error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(57) : fatal error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen) +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen +c:\winddk\6001.18000\bin\verify.src(57) : error U1050: BLD1004 : MSVCRT lib listed explicitly - use USE_MSVCRT=1 (c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest: TARGETPATH is ..\..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""dapltest.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\..\..\..\inc; /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapltest.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\dapl\include /I..\..\..\dat\include /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\dapltest.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\dapl\include + /I..\..\..\dat\include + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DDYNAMIC_DAT_LOADING + -DDAT_DLL_NAME=\"datd.dll\" + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\dapl_bpool.c .\dapl_client.c .\dapl_client_info.c .\dapl_cnxn.c .\dapl_endian.c .\dapl_fft_cmd.c .\dapl_fft_connmgt.c .\dapl_fft_dataxfer.c .\dapl_fft_dataxfer_client.c .\dapl_fft_endpoint.c .\dapl_fft_hwconn.c .\dapl_fft_mem.c .\dapl_fft_pz.c .\dapl_fft_queryinfo.c .\dapl_fft_test.c .\dapl_fft_util.c .\dapl_getopt.c .\dapl_limit.c .\dapl_limit_cmd.c .\dapl_main.c .\dapl_mdep.c .\dapl_memlist.c .\dapl_netaddr.c .\dapl_params.c .\dapl_performance_client.c .\dapl_performance_cmd.c .\dapl_performance_server.c .\dapl_performance_stats.c .\dapl_performance_util.c .\dapl_quit_cmd.c .\dapl_server.c .\dapl_server_cmd.c .\dapl_server_info.c .\dapl_test_data.c .\dapl_test_util.c .\dapl_thread.c .\dapl_transaction_cmd.c .\dapl_transaction_stats.c .\dapl_transaction_test.c .\dapl_transaction_util.c .\dapl_util.c +dapl_bpool.c +dapl_client.c +dapl_client_info.c +dapl_cnxn.c +dapl_endian.c +dapl_fft_cmd.c +dapl_fft_connmgt.c +dapl_fft_dataxfer.c +dapl_fft_dataxfer_client.c +dapl_fft_endpoint.c +dapl_fft_hwconn.c +dapl_fft_mem.c +dapl_fft_pz.c +dapl_fft_queryinfo.c +dapl_fft_test.c +dapl_fft_util.c +dapl_getopt.c +dapl_limit.c +dapl_limit_cmd.c +dapl_main.c +Compiling... +dapl_mdep.c +dapl_memlist.c +dapl_netaddr.c +dapl_params.c +dapl_performance_client.c +dapl_performance_cmd.c +dapl_performance_server.c +dapl_performance_stats.c +dapl_performance_util.c +dapl_quit_cmd.c +dapl_server.c +dapl_server_cmd.c +dapl_server_info.c +dapl_test_data.c +dapl_test_util.c +dapl_thread.c +dapl_transaction_cmd.c +dapl_transaction_stats.c +dapl_transaction_test.c +dapl_transaction_util.c +Compiling... +dapl_util.c + link.exe /out:..\..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dapltest.exe /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/STACK:0x80000,0x2000 +/tsaware +/dynamicbase +/subsystem:console,6.00 +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,usermode64 +/entry:mainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapltest.res +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_bpool.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_client.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_client_info.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_cnxn.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_endian.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_connmgt.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_dataxfer.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_dataxfer_client.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_endpoint.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_hwconn.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_mem.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_pz.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_queryinfo.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_test.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_getopt.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_limit.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_limit_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_main.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_mdep.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_memlist.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_netaddr.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_params.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_client.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_server.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_stats.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_quit_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_server.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_server_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_server_info.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_test_data.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_test_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_thread.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_stats.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_test.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_util.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\advapi32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ws2_32.lib +dapl_bpool.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/STACK:0x80000,0x2000 +/tsaware +/dynamicbase +/subsystem:console,6.00 +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,usermode64 +/entry:mainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapltest.res +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_bpool.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_client.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_client_info.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_cnxn.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_endian.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_connmgt.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_dataxfer.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_dataxfer_client.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_endpoint.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_hwconn.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_mem.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_pz.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_queryinfo.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_test.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_fft_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_getopt.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_limit.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_limit_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_main.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_mdep.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_memlist.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_netaddr.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_params.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_client.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_server.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_stats.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_performance_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_quit_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_server.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_server_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_server_info.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_test_data.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_test_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_thread.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_stats.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_test.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_transaction_util.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest\objchk_wlh_amd64\amd64\dapl_util.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\advapi32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ws2_32.lib +Generating code +Finished generating code +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat directory ************* +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl directory ************* +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat directory ************* +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl directory ************* +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm directory ************* +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""dapl2testd.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\..\..\inc; /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest\objchk_wlh_amd64\amd64\dapltest.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I. /Iinclude /Imdep\windows /I..\..\dat\include /I%DDK_INC_PATH% /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\dapltest.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I. + /Iinclude + /Imdep\windows + /I..\..\dat\include + /I%DDK_INC_PATH% + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W1 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\dt_cmd.c .\dt_test.c .\dt_common.c .\dt_udapl.c .\dt_mdep.c +dt_cmd.c +dt_test.c +dt_common.c +dt_udapl.c +dt_mdep.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""dtest2d.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\..\..\inc; /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest\objchk_wlh_amd64\amd64\dtest.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I. /I..\..\dat\include /I../../../../inc /I..\..\..\..\inc\user /IC:\WinDDK\6001.18000\inc\api /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\dtest.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I. + /I..\..\dat\include + /I../../../../inc + /I..\..\..\..\inc\user + /IC:\WinDDK\6001.18000\inc\api + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W1 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\dtest.c .\getopt.c +dtest.c +getopt.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""dtestxd.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\..\..\inc; /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx\objchk_wlh_amd64\amd64\dtestx.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I. /I..\..\dat\include /I../../../../inc /I..\..\..\..\inc\user /IC:\WinDDK\6001.18000\inc\api /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\dtestx.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I. + /I..\..\dat\include + /I../../../../inc + /I..\..\..\..\inc\user + /IC:\WinDDK\6001.18000\inc\api + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W1 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\dtestx.c +dtestx.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\dat2d.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ipoib.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG -DNDIS_MINIPORT_DRIVER -DNDIS_WDM=1 -DDEPRECATE_DDK_FUNCTIONS -DNDIS51_MINIPORT -DNEED_CL_OBJ -DBINARY_COMPATIBLE=0 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\inc /I..\..\..\inc\kernel /Ic:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\ipoib.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DNDIS_MINIPORT_DRIVER + -DNDIS_WDM=1 + -DDEPRECATE_DDK_FUNCTIONS + -DNDIS51_MINIPORT + -DNEED_CL_OBJ + -DBINARY_COMPATIBLE=0 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\ipoib_driver.c .\ipoib_adapter.c .\ipoib_endpoint.c .\ipoib_port.c .\ipoib_ibat.c +ipoib_driver.c +ipoib_adapter.c +ipoib_endpoint.c +ipoib_port.c +ipoib_ibat.c + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ipoib.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ipoib.sys +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib.res +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_driver.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_adapter.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_endpoint.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_port.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_ibat.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ndis.lib +ipoib_driver.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ipoib.sys +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib.res +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_driver.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_adapter.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_endpoint.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_port.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel\objchk_wlh_amd64\amd64\ipoib_ibat.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ndis.lib +Generating code +Finished generating code +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ibsrp.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\ibsrp.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK -DDEPRECATE_DDK_FUNCTIONS -DSTOR_USE_SCSI_ALIASES -DNEED_CL_OBJ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\kernel /Ic:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\ibsrp.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DDEPRECATE_DDK_FUNCTIONS + -DSTOR_USE_SCSI_ALIASES + -DNEED_CL_OBJ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\srp_connection.c .\srp_data_path.c .\srp_descriptors.c .\srp_driver.c .\srp_event.c .\srp_hba.c .\srp_hca.c .\srp_session.c +srp_connection.c +srp_data_path.c +srp_descriptors.c +srp_driver.c +srp_event.c +srp_hba.c +srp_hca.c +srp_session.c + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibsrp.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibsrp.sys +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\ibsrp.res +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_connection.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_data_path.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_descriptors.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_driver.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_event.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_hba.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_hca.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_session.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\scsiwmi.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\storport.lib +srp_connection.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibsrp.sys +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\ibsrp.res +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_connection.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_data_path.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_descriptors.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_driver.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_event.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_hba.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_hca.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel\objchk_wlh_amd64\amd64\srp_session.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\scsiwmi.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\storport.lib +Generating code +Finished generating code +Linking for c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDLL=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ibwsd.dll""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64\ibspdll.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\user /IC:\WinDDK\6001.18000\inc\ddk /Ic:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\ibspdll.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDLL=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""qlgcvnic.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\inic.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK -DNDIS_MINIPORT_DRIVER -DNDIS_WDM=1 -DDEPRECATE_DDK_FUNCTIONS -DNDIS51_MINIPORT -DBINARY_COMPATIBLE=0 -DLBFO_ENABLED=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\inc /I..\..\..\inc\kernel /Ic:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\inic.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64/" + /FC + /MT + /U_MT + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + -DNDIS_MINIPORT_DRIVER + -DNDIS_WDM=1 + -DDEPRECATE_DDK_FUNCTIONS + -DNDIS51_MINIPORT + -DBINARY_COMPATIBLE=0 + -DLBFO_ENABLED=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\vnic_driver.c .\vnic_adapter.c .\vnic_ib.c .\vnic_control.c .\vnic_data.c .\vnic_netpath.c .\vnic_viport.c +vnic_driver.c +vnic_adapter.c +vnic_ib.c +vnic_control.c +vnic_data.c +vnic_netpath.c +vnic_viport.c + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\qlgcvnic.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\qlgcvnic.sys +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\inic.res +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_driver.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_adapter.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_ib.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_control.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_data.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_netpath.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_viport.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ndis.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibal.lib +vnic_driver.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\qlgcvnic.sys +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\inic.res +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_driver.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_adapter.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_ib.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_control.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_data.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_netpath.obj +c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel\objchk_wlh_amd64\amd64\vnic_viport.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ndis.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\ibal.lib +Generating code +Finished generating code +Linking for c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDLL=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel: TARGETPATH is ..\..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""mt23108.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mt23108.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG -DDRIVER -D__MSC__ -D__KERNEL__ -DMT_KERNEL -D__WIN__ -D__LITTLE_ENDIAN -DMT_LITTLE_ENDIAN -DMAX_ERROR=4 -DIVAPI_THH -DMTL_MODULE=MDT -DUSE_MOSAL -DMT_BUILD_LIB -D__DLL_EXPORTS__ -DUSE_KMUTEX -DSIMULTANUOUS_DPC -DMAP_PHYS_ADDR_VIA_KERNEL /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I. /I..\..\kernel /I..\..\..\..\inc /I..\..\..\..\inc\kernel /I..\mlxsys\tools /I..\tavor_arch_db /I..\Hca\verbs /I..\Hca\verbs\common /I..\mlxsys\mpga\os_dep\win /I..\mlxsys\mpga /I..\mlxsys\mtl_types /I..\mlxsys\mtl_types\win /I..\mlxsys\mtl_types\win\win /I..\mlxsys\mtl_common /I..\mlxsys\mtl_common\os_dep\win /I..\mlxsys\mosal /I..\mlxsys\mosal\os_dep\win /I..\Hca\hcahal /I..\hca\hcahal\tavor /I..\hca\hcahal\tavor\util /I..\hca\hcahal\tavor\thh_hob /I..\hca\hcahal\tavor\cmdif /I..\hca\hcahal\tavor\eventp /I..\hca\hcahal\tavor\uar /I..\hca\hcahal\tavor\mrwm /I..\hca\hcahal\tavor\thh_cqm /I..\hca\hcahal\tavor\udavm /I..\hca\hcahal\tavor\mcgm /I..\hca\hcahal\tavor\ddrmm /I..\hca\hcahal\tavor\thh_qpm /I..\hca\hcahal\tavor\thh_srqm /I..\hca\hcahal\tavor\uldm /I..\hca\hcahal\tavor\thhul_hob /I..\hca\hcahal\tavor\thhul_pdm /I..\hca\hcahal\tavor\thhul_cqm /I..\hca\hcahal\tavor\thhul_qpm /I..\hca\hcahal\tavor\thhul_mwm /I..\hca\hcahal\tavor\thhul_srqm /I..\hca\hcahal\tavor\os_dep\win /I..\mlxsys\os_dep\win\tdriver /Ic:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\mt23108.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + link.exe /out:..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/subsystem:native,6.00 +/base:0x10000 +/entry:GsDriverEntry +/out:..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.sys +..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.exp +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mt23108.res +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mtl_common_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mosal_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mpga_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\hh_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\thh_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\thhul_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\vapi_common_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\tdriver_sources.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +mtl_common_kl_sources.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/subsystem:native,6.00 +/base:0x10000 +/entry:GsDriverEntry +/out:..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.sys +..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.exp +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mt23108.res +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mtl_common_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mosal_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\mpga_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\hh_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\thh_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\thhul_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\vapi_common_kl_sources.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel\objchk_wlh_amd64\amd64\tdriver_sources.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +Generating code +Finished generating code +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""thca.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG -DDRIVER -DDEPRECATE_DDK_FUNCTIONS -D__MSC__ -D__KERNEL__ -D__WIN__ -D__LITTLE_ENDIAN -DMT_LITTLE_ENDIAN -DUSE_RELAY_MOD_NAME -DMAX_ERROR=4 -DIVAPI_THH -DMTL_MODULE=HCA /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\kernel /I..\vapi\tavor_arch_db /I..\vapi\Hca\verbs /I..\vapi\Hca\verbs\common /I..\vapi\mlxsys\mtl_types /I..\vapi\mlxsys\mtl_types\win /I..\vapi\mlxsys\mtl_types\win\win /I..\vapi\mlxsys\mtl_common /I..\vapi\mlxsys\mtl_common\os_dep\win /I..\vapi\mlxsys\mosal /I..\vapi\mlxsys\mosal\os_dep\win /I..\vapi\Hca\hcahal /I..\vapi\Hca\hcahal\tavor /I..\vapi\Hca\hcahal\tavor\os_dep\win /I..\vapi\Hca\hcahal\tavor\thhul_hob /I..\vapi\Hca\hcahal\tavor\thhul_pdm /I..\vapi\Hca\hcahal\tavor\thhul_cqm /I..\vapi\Hca\hcahal\tavor\thhul_qpm /I..\vapi\Hca\hcahal\tavor\thhul_mwm /I..\vapi\Hca\hcahal\tavor\util /I..\vapi\Hca\hcahal\tavor\thh_hob /I..\vapi\Hca\hcahal\tavor\cmdif /I..\vapi\Hca\hcahal\tavor\eventp /I..\vapi\Hca\hcahal\tavor\uar /I..\vapi\Hca\hcahal\tavor\mrwm /I..\vapi\Hca\hcahal\tavor\udavm /I..\vapi\Hca\hcahal\tavor\mcgm /I..\vapi\Hca\hcahal\tavor\ddrmm /I..\vapi\Hca\hcahal\tavor\uldm /I..\vapi\mlxsys\os_dep\win\tdriver /Ic:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\hca.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\kernel + /I..\vapi\tavor_arch_db + /I..\vapi\Hca\verbs + /I..\vapi\Hca\verbs\common + /I..\vapi\mlxsys\mtl_types + /I..\vapi\mlxsys\mtl_types\win + /I..\vapi\mlxsys\mtl_types\win\win + /I..\vapi\mlxsys\mtl_common + /I..\vapi\mlxsys\mtl_common\os_dep\win + /I..\vapi\mlxsys\mosal + /I..\vapi\mlxsys\mosal\os_dep\win + /I..\vapi\Hca\hcahal + /I..\vapi\Hca\hcahal\tavor + /I..\vapi\Hca\hcahal\tavor\os_dep\win + /I..\vapi\Hca\hcahal\tavor\thhul_hob + /I..\vapi\Hca\hcahal\tavor\thhul_pdm + /I..\vapi\Hca\hcahal\tavor\thhul_cqm + /I..\vapi\Hca\hcahal\tavor\thhul_qpm + /I..\vapi\Hca\hcahal\tavor\thhul_mwm + /I..\vapi\Hca\hcahal\tavor\util + /I..\vapi\Hca\hcahal\tavor\thh_hob + /I..\vapi\Hca\hcahal\tavor\cmdif + /I..\vapi\Hca\hcahal\tavor\eventp + /I..\vapi\Hca\hcahal\tavor\uar + /I..\vapi\Hca\hcahal\tavor\mrwm + /I..\vapi\Hca\hcahal\tavor\udavm + /I..\vapi\Hca\hcahal\tavor\mcgm + /I..\vapi\Hca\hcahal\tavor\ddrmm + /I..\vapi\Hca\hcahal\tavor\uldm + /I..\vapi\mlxsys\os_dep\win\tdriver + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -D__MSC__ + -D__KERNEL__ + -D__WIN__ + -D__LITTLE_ENDIAN + -DMT_LITTLE_ENDIAN + -DUSE_RELAY_MOD_NAME + -DMAX_ERROR=4 + -DIVAPI_THH + -DMTL_MODULE=HCA + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\hca_driver.c .\hca_data.c .\hca_direct.c .\hca_mcast.c .\hca_memory.c .\hca_verbs.c .\hca_smp.c +hca_driver.c +hca_data.c +hca_direct.c +hca_mcast.c +hca_memory.c +hca_verbs.c +hca_smp.c + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\thca.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\thca.sys +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca.res +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_driver.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_data.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_direct.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_mcast.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_memory.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_smp.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wdmguid.lib +hca_driver.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\thca.sys +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca.res +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_driver.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_data.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_direct.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_mcast.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_memory.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\kernel\objchk_wlh_amd64\amd64\hca_smp.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mt23108.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wdmguid.lib +Generating code +Finished generating code +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\user directory ************* +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel: TARGETPATH is ..\..\..\bin\kernel\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""mthca.sys""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_log.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /DNDEBUG -DDRIVER -DDEPRECATE_DDK_FUNCTIONS -D__LITTLE_ENDIAN /DDEPRECATE_DDK_FUNCTIONS=1 /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\inc /I ..\..\..\inc\kernel /Ic:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\ddk /IC:\WinDDK\6001.18000\inc\crt .\mthca_log.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I ..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -D__LITTLE_ENDIAN + /DDEPRECATE_DDK_FUNCTIONS=1 + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\hca_utils.c ..\mt_utils.c +hca_utils.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\inc + /I ..\..\..\inc\kernel + /Ic:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\ddk + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /DNDEBUG + -DDRIVER + -DDEPRECATE_DDK_FUNCTIONS + -D__LITTLE_ENDIAN + /DDEPRECATE_DDK_FUNCTIONS=1 + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + -cbstring + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\mthca_log.c .\hca_data.c .\hca_direct.c .\hca_driver.c .\hca_mcast.c .\hca_memory.c .\hca_pci.c .\hca_pnp.c .\hca_verbs.c .\mt_cache.c .\mt_device.c .\mt_l2w.c .\mt_memory.c .\mt_packer.c .\mt_reset_tavor.c .\mt_ud_header.c .\mt_uverbs.c .\mt_verbs.c .\mt_pa_cash.c .\mthca_allocator.c .\mthca_av.c .\mthca_catas.c .\mthca_cmd.c .\mthca_cq.c .\mthca_eq.c .\mthca_mad.c .\mthca_main.c .\mthca_mcg.c .\mthca_memfree.c .\mthca_mr.c .\mthca_pd.c .\mthca_profile.c .\mthca_provider.c .\mthca_qp.c .\mthca_srq.c .\mthca_uar.c +mthca_log.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_data.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_direct.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_driver.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_mcast.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_memory.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_pci.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_pnp.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +hca_verbs.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_cache.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_device.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_l2w.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_memory.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_packer.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_reset_tavor.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_ud_header.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_uverbs.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_verbs.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mt_pa_cash.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_allocator.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +Compiling... +mthca_av.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_catas.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_cmd.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_cq.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_eq.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_mad.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_main.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_mcg.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_memfree.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_mr.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_mr.c(879) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_mr.c(879) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +mthca_pd.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_profile.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_provider.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +mthca_qp.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_qp.c(1177) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_qp.c(1177) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +mthca_srq.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(188) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(188) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(717) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(717) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(717) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(717) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +mthca_uar.c +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored + link.exe /out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mthca.sys /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mthca.sys +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_log.res +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_utils.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_utils.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_log.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_data.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_direct.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_driver.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_mcast.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_memory.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_pci.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_cache.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_device.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_l2w.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_memory.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_packer.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_reset_tavor.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_ud_header.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_uverbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_pa_cash.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_allocator.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_av.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_catas.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_cq.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_eq.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_mad.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_main.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_mcg.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_memfree.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_mr.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_pd.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_profile.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_provider.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_qp.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_srq.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_uar.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wdmguid.lib +hca_utils.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/pdbcompress +/STACK:0x40000,0x1000 +/driver +/base:0x10000 +/subsystem:native,6.00 +/entry:GsDriverEntry +/out:..\..\..\bin\kernel\objchk_wlh_amd64\amd64\mthca.sys +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_log.res +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_utils.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_utils.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_log.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_data.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_direct.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_driver.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_mcast.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_memory.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_pci.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_pnp.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\hca_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_cache.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_device.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_l2w.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_memory.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_packer.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_reset_tavor.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_ud_header.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_uverbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_verbs.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mt_pa_cash.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_allocator.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_av.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_catas.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_cmd.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_cq.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_eq.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_mad.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_main.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_mcg.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_memfree.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_mr.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_pd.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_profile.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_provider.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_qp.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_srq.obj +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\objchk_wlh_amd64\amd64\mthca_uar.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\BufferOverflowK.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ntoskrnl.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\hal.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wmilib.lib +..\..\..\bin\kernel\objchk_wlh_amd64\amd64\complib.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\wdmguid.lib +Generating code +Finished generating code +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user directory ************* +Linking for c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDLL=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""IbInstaller.dll""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 -DUNICODE -D_UNICODE /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /Ic:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\ibinstaller.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. +.\ibinstaller.rc(40) : fatal error RC1015: cannot open include file 'afxres.h'. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\ibinstaller.rc(40) : error RC1015: cannot open include file 'afxres.h'. + link.exe /out:..\..\..\bin\user\objchk_wlh_amd64\amd64\IbInstaller.dll /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/dynamicbase +/STACK:0x40000,0x1000 +/dll +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,IbInstaller +/subsystem:console,6.00 +-entry:_DllMainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.obj +..\..\..\bin\user\objchk_wlh_amd64\amd64\IbInstaller.exp +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.res +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.obj +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\setupapi.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +stdafx.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/dynamicbase +/STACK:0x40000,0x1000 +/dll +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,IbInstaller +/subsystem:console,6.00 +-entry:_DllMainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\stdafx.obj +..\..\..\bin\user\objchk_wlh_amd64\amd64\IbInstaller.exp +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.res +c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.obj +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\setupapi.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +LINK : fatal error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.res' +link : error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user\objchk_wlh_amd64\amd64\ibinstaller.res' +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\flint.cpp .\flint-tools.cpp +flint.cpp +flint-tools.cpp +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""installsp.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\installsp.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\user /Ic:\progra~1\mic977~1\include /Ic:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\installsp.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\progra~1\mic977~1\include + /Ic:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + -DPERFMON_ENABLED + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\installsp.c +installsp.c +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2143: syntax error : missing ')' before 'type' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2169: '_strset' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2169: '_strset' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2085: '_Str' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2085: '_Str' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2169: 'strcpy' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2169: 'strcpy' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2169: 'strcat' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2169: 'strcat' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : warning C4132: '__in_z' : const object should be initialized +warnings in directory c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user +c:\winddk\6001.18000\inc\crt\string.h(76) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2085: 'strnlen_s' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2085: 'strnlen_s' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ';' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ';' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(81) : error C2143: syntax error : missing ';' before '{' +c:\winddk\6001.18000\inc\crt\string.h(81) : error C2143: syntax error : missing ';' before '{' +c:\winddk\6001.18000\inc\crt\string.h(82) : error C2065: '_MaxCount' : undeclared identifier +c:\winddk\6001.18000\inc\crt\string.h(82) : error C2065: '_MaxCount' : undeclared identifier +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(109) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(110) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(111) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(112) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(113) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(114) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(115) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(116) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : fatal error C1003: error count exceeds 100; stopping compilation +c:\winddk\6001.18000\inc\crt\string.h(116) : error C1003: error count exceeds 100; stopping compilation + link.exe /out:..\..\..\bin\user\objchk_wlh_amd64\amd64\installsp.exe /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/STACK:0x80000,0x2000 +/tsaware +/dynamicbase +/subsystem:console,6.00 +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,usermode64 +/entry:mainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\installsp.res +c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\installsp.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\advapi32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ws2_32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\LoadPerf.lib +LINK : fatal error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\installsp.obj' +link : error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user\objchk_wlh_amd64\amd64\installsp.obj' +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""vstat.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user\objchk_wlh_amd64\amd64\vstat.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\vstat\user\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\vstat.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\vstat\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\vstat_main.c +vstat_main.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compile errors: not linking c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user directory ************* +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\flint\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\flint\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\makefile.new(2777) : fatal error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\flint\user - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\flint\user +c:\winddk\6001.18000\bin\makefile.new(2777) : error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\flint\user - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\flint\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\mst\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\mst\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\makefile.new(2777) : fatal error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\mst\user - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mst\user +c:\winddk\6001.18000\bin\makefile.new(2777) : error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\mst\user - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\mst\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\spark\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\spark\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\verify.src(51) : fatal error U1050: BLD1003 : STL lib listed explicitly - use USE_STL=1 (c:\mshefty\scm\winof\branches\winverbs\tools\spark\user) +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\spark\user +c:\winddk\6001.18000\bin\verify.src(51) : error U1050: BLD1003 : STL lib listed explicitly - use USE_STL=1 (c:\mshefty\scm\winof\branches\winverbs\tools\spark\user) +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\spark\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\nsc ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\nsc: TARGETPATH is ..\..\bin\user\objchk_wlh_amd64 +c:\winddk\6001.18000\bin\makefile.new(2777) : fatal error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\nsc - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\nsc +c:\winddk\6001.18000\bin\makefile.new(2777) : error U1050: : c:\mshefty\scm\winof\branches\winverbs\tools\nsc - USE_CRTDLL is not supported. Use USE_MSVCRT=1 instead. +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\nsc +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ib_send_bw.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64\send_bw.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /D__WIN__ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\..\inc /I..\..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\send_bw.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\getopt.c ..\perf_utils.c +getopt.c +perf_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\send_bw.c +send_bw.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ib_send_lat.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64\send_lat.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /D__WIN__ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\..\inc /I..\..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\send_lat.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\getopt.c ..\perf_utils.c +getopt.c +perf_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\send_lat.c +send_lat.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ib_write_lat.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64\write_lat.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /D__WIN__ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\..\inc /I..\..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\write_lat.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\getopt.c ..\perf_utils.c +getopt.c +perf_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\write_lat.c +write_lat.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ib_write_bw.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64\write_bw.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /D__WIN__ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\..\inc /I..\..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\write_bw.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\getopt.c ..\perf_utils.c +getopt.c +perf_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\write_bw.c +write_bw.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ib_read_lat.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64\read_lat.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /D__WIN__ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\..\inc /I..\..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\read_lat.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\getopt.c ..\perf_utils.c +getopt.c +perf_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\read_lat.c +read_lat.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""ib_read_bw.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /I..\..\win\include /r /fo c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64\read_bw.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /D__WIN__ /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I.. /I..\..\..\..\inc /I..\..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\read_bw.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\getopt.c ..\perf_utils.c +getopt.c +perf_utils.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I.. + /I..\..\..\..\inc + /I..\..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /D__WIN__ + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\read_bw.c +read_bw.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw +NMAKE : fatal error U1073: don't know how to make '..\..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tests\alts\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tests\alts\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tests\alts\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tests\alts\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /I.. + /Ic:\mshefty\scm\winof\branches\winverbs\tests\alts\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + ..\allocdeallocpd.c ..\alts_misc.c ..\cmtests.c ..\createanddestroycq.c ..\createanddestroyqp.c ..\createdestroyav.c ..\creatememwindow.c ..\ibquery.c ..\madtests.c ..\multisendrecv.c ..\openclose.c ..\querycaattr.c ..\registermemregion.c ..\reregister_hca.c ..\registerpnp.c ..\smatests.c +allocdeallocpd.c +alts_misc.c +cmtests.c +createanddestroycq.c +createanddestroyqp.c +createdestroyav.c +creatememwindow.c +ibquery.c +madtests.c +multisendrecv.c +openclose.c +querycaattr.c +registermemregion.c +reregister_hca.c +registerpnp.c +smatests.c + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tests\alts\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tests\alts\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /I.. + /Ic:\mshefty\scm\winof\branches\winverbs\tests\alts\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\alts_main.c +alts_main.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\alts\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\alts\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + rc -l 409 -DSXS_PROCESSOR_ARCHITECTURE="""AMD64""" -DSXS_TARGET="""cmtest.exe""" -DSYSTEM_COMPATIBLE_ASSEMBLY_NAME="""Microsoft.Windows.SystemCompatible""" -DLSYSTEM_COMPATIBLE_ASSEMBLY_NAME=L"""Microsoft.Windows.SystemCompatible""" -DSXS_ASSEMBLY_VERSION="""""" /r /fo c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user\objchk_wlh_amd64\amd64\cmtest.res /D_WIN64 /D_AMD64_ /DAMD64 /DCONDITION_HANDLING=1 /DNT_INST=0 /DWIN32=100 /D_NT1X_=100 /DWINNT=1 /D_WIN32_WINNT=0x0600 /DWINVER=0x0600 /D_WIN32_IE=0x0700 /DWIN32_LEAN_AND_MEAN=1 /DDEVL=1 /DDBG=1 /D__BUILDMACHINE__=WinDDK /D_DLL=1 /D_MT=1 /DDEPRECATE_DDK_FUNCTIONS=1 /DMSC_NOOPT /DNTDDI_VERSION=0x06000100 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /I..\..\..\inc /I..\..\..\inc\user /Ic:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user\objchk_wlh_amd64\amd64 /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\api /IC:\WinDDK\6001.18000\inc\crt .\cmtest.rc +Microsoft (R) Windows (R) Resource Compiler Version 6.0.5724.0 +Copyright (C) Microsoft Corporation. All rights reserved. + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\cmtest_main.c +cmtest_main.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp: TARGETPATH is ..\..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /Ic:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\ttcp.c +ttcp.c + link.exe /out:..\..\..\..\bin\user\objchk_wlh_amd64\amd64\ttcp.exe /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/STACK:0x80000,0x2000 +/tsaware +/dynamicbase +/subsystem:console,6.00 +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,usermode64 +/entry:mainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp\objchk_wlh_amd64\amd64\ttcp.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\advapi32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ws2_32.lib +ttcp.obj : MSIL .netmodule or module compiled with /GL found; restarting link with /LTCG; add /LTCG to the link command line to improve linker performance +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/STACK:0x80000,0x2000 +/tsaware +/dynamicbase +/subsystem:console,6.00 +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,usermode64 +/entry:mainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp\objchk_wlh_amd64\amd64\ttcp.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\advapi32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ws2_32.lib +Generating code +Finished generating code +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\progra~1\mic977~1\include + /Ic:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" + -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" + -DVER_FILEMAJORVERSION=1 + -DVER_FILEMINORVERSION=0 + -DVER_FILEBUILD=0 + -DVER_FILEREV=0 + -DVER_PROVIDER="""OpenIB""" + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W4 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\printip.c +printip.c +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2143: syntax error : missing ')' before 'type' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : warning C4131: '_strset' : uses old-style declarator +warnings in directory c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user +c:\winddk\6001.18000\inc\crt\string.h(64) : warning C4131: '_strset' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2169: '_strset' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2169: '_strset' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2085: '_Str' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2085: '_Str' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(64) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(65) : warning C4131: '_strset_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(65) : warning C4131: '_strset_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(65) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(67) : warning C4131: 'strcpy_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(67) : warning C4131: 'strcpy_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(67) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(70) : warning C4131: 'strcpy' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(70) : warning C4131: 'strcpy' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2169: 'strcpy' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2169: 'strcpy' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(70) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(72) : warning C4131: 'strcat_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(72) : warning C4131: 'strcat_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '_Dst' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2082: redefinition of formal parameter 'rsize_t' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2146: syntax error : missing ',' before identifier '_DstSize' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(72) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ')' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(75) : warning C4131: 'strcat' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(75) : warning C4131: 'strcat' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2169: 'strcat' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2169: 'strcat' : intrinsic function, cannot be defined +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '_Dest' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2085: '__in_z' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(75) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(76) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(76) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(77) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(78) : warning C4131: 'strnlen' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(78) : warning C4131: 'strnlen' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(78) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ')' before '(' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2091: function returns function +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2085: 'strnlen_s' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2085: 'strnlen_s' : not in formal parameter list +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ';' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2143: syntax error : missing ';' before 'type' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter '_Str' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2082: redefinition of formal parameter 'size_t' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2146: syntax error : missing ',' before identifier '_MaxCount' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(80) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(81) : error C2143: syntax error : missing ';' before '{' +c:\winddk\6001.18000\inc\crt\string.h(81) : error C2143: syntax error : missing ';' before '{' +c:\winddk\6001.18000\inc\crt\string.h(82) : error C2065: '_MaxCount' : undeclared identifier +c:\winddk\6001.18000\inc\crt\string.h(82) : error C2065: '_MaxCount' : undeclared identifier +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(102) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : 'type' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(108) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(109) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(109) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(110) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(110) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(111) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(111) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(112) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(112) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(113) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(113) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(114) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(114) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(115) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(115) : error C2059: syntax error : ')' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ')' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing '{' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(116) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : error C2143: syntax error : missing ';' before 'const' +c:\winddk\6001.18000\inc\crt\string.h(116) : fatal error C1003: error count exceeds 100; stopping compilation +c:\winddk\6001.18000\inc\crt\string.h(116) : error C1003: error count exceeds 100; stopping compilation + link.exe /out:..\..\..\bin\user\objchk_wlh_amd64\amd64\PrintIP.exe /machine:amd64 @c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64\lnk.rsp +Microsoft (R) Incremental Linker Version 8.00.50727.278 +Copyright (C) Microsoft Corporation. All rights reserved. +/MERGE:_PAGE=PAGE +/MERGE:_TEXT=.text +/SECTION:INIT,d +/OPT:REF +/OPT:ICF +/IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218,4218,4235 +/INCREMENTAL:NO +/release +/NODEFAULTLIB +/WX +/debug +/debugtype:cv,fixup,pdata +/version:6.0 +/osversion:6.0 +/opt:nowin98 +C:\WinDDK\6001.18000\lib\wlh\amd64\hotpatch.obj +/functionpadmin:6 +/merge:.rdata=.text +/pdbcompress +/STACK:0x80000,0x2000 +/tsaware +/dynamicbase +/subsystem:console,6.00 +/base:@C:\WinDDK\6001.18000\bin\coffbase.txt,usermode64 +/entry:mainCRTStartup +c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64\printip.obj +C:\WinDDK\6001.18000\lib\wlh\amd64\advapi32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\kernel32.lib +C:\WinDDK\6001.18000\lib\crt\amd64\msvcrt.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\ws2_32.lib +C:\WinDDK\6001.18000\lib\wlh\amd64\Iphlpapi.lib +LINK : fatal error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64\printip.obj' +link : error LNK1181: cannot open input file 'c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user\objchk_wlh_amd64\amd64\printip.obj' +Compiling and Linking c:\mshefty\scm\winof\branches\winverbs\tests\limits\user ************* +'nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR=' +c:\mshefty\scm\winof\branches\winverbs\tests\limits\user: TARGETPATH is ..\..\..\bin\user\objchk_wlh_amd64 + cl.exe @c:\mshefty\scm\winof\branches\winverbs\tests\limits\user\objchk_wlh_amd64\amd64\cl.rsp +Microsoft (R) C/C++ Optimizing Compiler Version 14.00.50727.278 for x64 +Copyright (C) Microsoft Corporation. All rights reserved. +cl /Fo"c:\mshefty\scm\winof\branches\winverbs\tests\limits\user\objchk_wlh_amd64\amd64/" + /FC + /Iamd64\ + /I. + /I..\..\..\inc + /I..\..\..\inc\user + /Ic:\mshefty\scm\winof\branches\winverbs\tests\limits\user\objchk_wlh_amd64\amd64 + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\api + /IC:\WinDDK\6001.18000\inc\crt + /D_WIN64 + /D_AMD64_ + /DAMD64 + /DCONDITION_HANDLING=1 + /DNT_INST=0 + /DWIN32=100 + /D_NT1X_=100 + /DWINNT=1 + /D_WIN32_WINNT=0x0600 + /DWINVER=0x0600 + /D_WIN32_IE=0x0700 + /DWIN32_LEAN_AND_MEAN=1 + /DDEVL=1 + /DDBG=1 + /D__BUILDMACHINE__=WinDDK + /D_DLL=1 + /D_MT=1 + /DDEPRECATE_DDK_FUNCTIONS=1 + /DMSC_NOOPT + /DNTDDI_VERSION=0x06000100 + /c + /Zc:wchar_t- + /Zl + /Zp8 + /Gy + /W3 + /Wp64 + /EHs-c- + /GR- + /GF + /GS + /Z7 + /Od + /Oi + /GL + /Z7 + /DKMDF_MAJOR_VERSION=01 + /DKMDF_MINOR_VERSION=007 + /homeparams + /FIC:\WinDDK\6001.18000\inc\api\warning.h + .\limits_main.c +limits_main.c +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\limits\user +NMAKE : fatal error U1073: don't know how to make '..\..\..\bin\user\objchk_wlh_amd64\amd64\complibd.lib' +Stop. +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\limits\user +nmake.exe /nologo BUILDMSG=Stop. -i BUILD_PASS=PASS2 LINKONLY=1 NOPASS0=1 MAKEDIR_RELATIVE_TO_BASEDIR= failed - rc = 2 + diff --git a/branches/winverbs/buildchk_wlh_amd64.wrn b/branches/winverbs/buildchk_wlh_amd64.wrn new file mode 100644 index 00000000..e22069ff --- /dev/null +++ b/branches/winverbs/buildchk_wlh_amd64.wrn @@ -0,0 +1,103 @@ +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\user +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2226) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2227) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2355) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2375) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2705) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\kernel +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_sync.c(593) : warning C4996: 'RtlEnlargedIntegerMultiply' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_sync.c(617) : warning C4996: 'RtlEnlargedIntegerMultiply' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(69) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(102) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(119) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(139) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(160) : warning C4996: 'HalGetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(178) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(195) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(216) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\mlxsys\mosal\os_dep\win\mosal_ntddk.c(237) : warning C4996: 'HalSetBusDataByOffset' was declared deprecated +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(599) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(600) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1005) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1005) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1007) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thh_hob\thh_hob.c(1013) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_pdm\thhul_pdm.c(161) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2226) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2227) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2355) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2375) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mt23108\vapi\hca\hcahal\tavor\thhul_qpm\thhul_qpm.c(2705) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\mlnx_uvp_qp.c(991) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user\mlnx_uvp_srq.c(316) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +warnings in directory c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_mr.c(879) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_qp.c(1177) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(188) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(717) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mthca_srq.c(717) : warning C4334: '<<' : result of 32-bit shift implicitly converted to 64 bits (was 64-bit shift intended?) +c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel\mt_atomic.h(18) : warning C4197: 'atomic_t' : top-level volatile in cast is ignored +warnings in directory c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user +c:\winddk\6001.18000\inc\crt\string.h(76) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(109) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(110) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(111) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(112) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(113) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(114) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(115) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(116) : warning C4132: '__in_z' : const object should be initialized +warnings in directory c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user +c:\winddk\6001.18000\inc\crt\string.h(64) : warning C4131: '_strset' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(65) : warning C4131: '_strset_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(67) : warning C4131: 'strcpy_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(70) : warning C4131: 'strcpy' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(72) : warning C4131: 'strcat_s' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(75) : warning C4131: 'strcat' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(76) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(78) : warning C4131: 'strnlen' : uses old-style declarator +c:\winddk\6001.18000\inc\crt\string.h(109) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(110) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(111) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(112) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(113) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(114) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(115) : warning C4132: '__in_z' : const object should be initialized +c:\winddk\6001.18000\inc\crt\string.h(116) : warning C4132: '__in_z' : const object should be initialized diff --git a/branches/winverbs/buildchk_wnet_AMD64.err b/branches/winverbs/buildchk_wnet_AMD64.err new file mode 100644 index 00000000..fd0afb44 --- /dev/null +++ b/branches/winverbs/buildchk_wnet_AMD64.err @@ -0,0 +1,3 @@ +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\wvtests\user +tests\wvtests\user\wv_main.obj : error LNK2001: unresolved external symbol IID_IWVProvider +bin\user\objchk_wnet_amd64\amd64\winverb.exe : error LNK1120: 1 unresolved externals diff --git a/branches/winverbs/buildchk_wnet_AMD64.log b/branches/winverbs/buildchk_wnet_AMD64.log new file mode 100644 index 00000000..27872f4a --- /dev/null +++ b/branches/winverbs/buildchk_wnet_AMD64.log @@ -0,0 +1,233 @@ +BUILD: Computing Include file dependencies: +BUILD: Examining c:\mshefty\scm\winof\branches\winverbs directory tree for files to compile. +Compiling (NoSync) c:\mshefty\scm\winof\branches\winverbs\tests\wvtests\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i NTTEST= UMTEST= NOLINK=1 NOPASS0=1 AMD64=1' +cl -nologo -Iamd64\ -I. -IC:\WINDDK\3790~1.183\inc\mfc42 -I..\..\..\inc -I..\..\..\inc\user -Iobjchk_wnet_AMD64\amd64 -IC:\WINDDK\3790~1.183\inc\wnet -IC:\WINDDK\3790~1.183\inc\wnet -IC:\WINDDK\3790~1.183\inc\crt -IC:\WINDDK\3790~1.183\inc\wnet\crt\stl60 -D_WIN64 -D_AMD64_ -DAMD64 -DCONDITION_HANDLING=1 -DNT_INST=0 -DWIN32=100 -D_NT1X_=100 -DWINNT=1 -D_WIN32_WINNT=0x0502 /DWINVER=0x0502 -D_WIN32_IE=0x0603 -DWIN32_LEAN_AND_MEAN=1 -D_AMD64_SIMULATOR_PERF_ -D_SKIP_IF_SIMULATOR_ -D_AMD64_SIMULATOR_ -D_AMD64_WORKAROUND_ -DDEVL=1 -DDBG=1 -D__BUILDMACHINE__=WinDDK -DNDEBUG -D_DLL=1 -D_MT=1 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /c /Zl /Zp8 /Gy /W3 /Wp64 /WX /EHs-c- /GR- /GF /GS -Z7 /Od /Oi -Z7 /EHsc -d2home -FIC:\WINDDK\3790~1.183\inc\wnet\warning.h .\wv_main.cpp +cl : Command line warning D9025 : overriding '/EHs-' with '/EHs' +cl : Command line warning D9025 : overriding '/EHc-' with '/EHc' +wv_main.cpp + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\complib\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\al\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\flint\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\mst\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\spark\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\nsc directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\alts\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\limits\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\wvtests\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= AMD64=1' + link -out:..\..\..\bin\user\objchk_wnet_AMD64\amd64\winverb.exe -machine:amd64 @C:\DOCUME~1\mshefty\LOCALS~1\Temp\nm2A5.tmp +Microsoft (R) Incremental Linker Version 8.00.40310.39 +Copyright (C) Microsoft Corporation. All rights reserved. + +-MERGE:_PAGE=PAGE +-MERGE:_TEXT=.text +-SECTION:INIT,d +-OPT:REF +-OPT:ICF +-IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221,4108,4088,4218 +-INCREMENTAL:NO +-FULLBUILD +/release +-NODEFAULTLIB +/WX +-debug +-debugtype:cv +-version:5.2 +-osversion:5.2 +-debug +-debugtype:cv,fixup,pdata +/opt:nowin98 +C:\WINDDK\3790~1.183\lib\wnet\amd64\hotpatch.obj +/functionpadmin:6 +-merge:.rdata=.text +/pdbcompress +-STACK:0x80000,0x2000 +/tsaware +-subsystem:console,4.00 +-base:@C:\WINDDK\3790~1.183\bin\coffbase.txt,usermode64 +-entry:mainCRTStartup +objchk_wnet_AMD64\amd64\wv_main.obj +C:\WINDDK\3790~1.183\lib\wnet\amd64\BufferOverflowU.lib +C:\WINDDK\3790~1.183\lib\crt\amd64\msvcrt.lib +C:\WINDDK\3790~1.183\lib\crt\amd64\msvcprt.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\advapi32.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\kernel32.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\ntdll.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\kernel32.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\advapi32.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\user32.lib +C:\WINDDK\3790~1.183\lib\wnet\amd64\ole32.lib +..\..\..\bin\user\objchk_wnet_AMD64\amd64\winverbsd.lib +wv_main.obj : error LNK2001: unresolved external symbol IID_IWVProvider +..\..\..\bin\user\objchk_wnet_AMD64\amd64\winverb.exe : fatal error LNK1120: 1 unresolved externals + echo Skip Binplace: +Skip Binplace: + +Stop. diff --git a/branches/winverbs/buildchk_wnet_AMD64.wrn b/branches/winverbs/buildchk_wnet_AMD64.wrn new file mode 100644 index 00000000..af4ea655 --- /dev/null +++ b/branches/winverbs/buildchk_wnet_AMD64.wrn @@ -0,0 +1,2 @@ +cl : warning D9025 : overriding '/EHs-' with '/EHs' +cl : warning D9025 : overriding '/EHc-' with '/EHc' diff --git a/branches/winverbs/buildchk_wnet_x86.err b/branches/winverbs/buildchk_wnet_x86.err new file mode 100644 index 00000000..c2985af1 --- /dev/null +++ b/branches/winverbs/buildchk_wnet_x86.err @@ -0,0 +1,3 @@ +errors in directory c:\mshefty\scm\winof\branches\winverbs\tests\wvtests\user +tests\wvtests\user\wv_main.obj : error LNK2001: unresolved external symbol _IID_IWVProvider +bin\user\objchk_wnet_x86\i386\winverb.exe : error LNK1120: 1 unresolved externals diff --git a/branches/winverbs/buildchk_wnet_x86.log b/branches/winverbs/buildchk_wnet_x86.log new file mode 100644 index 00000000..88bdc631 --- /dev/null +++ b/branches/winverbs/buildchk_wnet_x86.log @@ -0,0 +1,228 @@ +BUILD: Computing Include file dependencies: +BUILD: Examining c:\mshefty\scm\winof\branches\winverbs directory tree for files to compile. +Compiling (NoSync) c:\mshefty\scm\winof\branches\winverbs\tests\wvtests\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i NTTEST= UMTEST= NOLINK=1 NOPASS0=1 386=1' +cl -nologo -Ii386\ -I. -IC:\WINDDK\3790~1.183\inc\mfc42 -I..\..\..\inc -I..\..\..\inc\user -Iobjchk_wnet_x86\i386 -IC:\WINDDK\3790~1.183\inc\wnet -IC:\WINDDK\3790~1.183\inc\wnet -IC:\WINDDK\3790~1.183\inc\crt -IC:\WINDDK\3790~1.183\inc\wnet\crt\stl60 -D_X86_=1 -Di386=1 -DSTD_CALL -DCONDITION_HANDLING=1 -DNT_INST=0 -DWIN32=100 -D_NT1X_=100 -DWINNT=1 -D_WIN32_WINNT=0x0502 /DWINVER=0x0502 -D_WIN32_IE=0x0603 -DWIN32_LEAN_AND_MEAN=1 -DDEVL=1 -DDBG=1 -D__BUILDMACHINE__=WinDDK -DFPO=0 -DNDEBUG -D_DLL=1 -D_MT=1 -DIB_COMPANYNAME="""OpenFabrics\x20Alliance""" -DIB_PRODUCTNAME="""OpenFabrics\x20Windows""" -DVER_FILEMAJORVERSION=1 -DVER_FILEMINORVERSION=0 -DVER_FILEBUILD=0 -DVER_FILEREV=0 -DVER_PROVIDER="""OpenIB""" /c /Zl /Zp8 /Gy /Gm- /W3 /WX /Gz /GX- /GR- /GF /GS /G6 /Ze /Gi- /QIfdiv- /hotpatch -Z7 /Od /Oi /Oy- /EHsc -FIC:\WINDDK\3790~1.183\inc\wnet\warning.h .\wv_main.cpp +wv_main.cpp + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\complib\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\al\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\bus\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\iou\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\core\winverbs\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\opensm directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\osmtest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\opensm\user\ibtrapgen directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\test\udapl\dapltest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dat\udat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl\dapl\udapl directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dat\udat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\dapl\udapl_scm directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dapltest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtest directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\dapl2\test\dtestx directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\ipoib\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\srp\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\wsd\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\ulp\qlgcvnic\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\hw\mthca\kernel directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\hw\mthca\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\coinstaller\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\fwupdate\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\wsdinstall\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\vstat\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\mtcr\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= MAKEDLL=1 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\flint\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\mst\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\spark\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\nsc directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_bw directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\send_lat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_lat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\write_bw directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_lat directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tools\perftests\user\read_bw directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\alts\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\cmtest\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\wsd\user\ttcp directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\ibat\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\limits\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + +Stop. +Linking c:\mshefty\scm\winof\branches\winverbs\tests\wvtests\user directory ******************** +'nmake.exe /nologo BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1 NTTEST= UMTEST= 386=1' + link -out:..\..\..\bin\user\objchk_wnet_x86\i386\winverb.exe -machine:ix86 @C:\DOCUME~1\mshefty\LOCALS~1\Temp\nm2A3.tmp +Microsoft (R) Incremental Linker Version 7.10.4035 +Copyright (C) Microsoft Corporation. All rights reserved. + +-MERGE:_PAGE=PAGE +-MERGE:_TEXT=.text +-SECTION:INIT,d +-OPT:REF +-OPT:ICF +-IGNORE:4198,4010,4037,4039,4065,4070,4078,4087,4089,4221 +-INCREMENTAL:NO +-FULLBUILD +/release +-NODEFAULTLIB +/WX +-debug +-debugtype:cv +-version:5.2 +-osversion:5.2 +/functionpadmin:5 +/safeseh +/opt:nowin98 +-merge:.rdata=.text +/pdbcompress +-STACK:0x40000,0x2000 +/tsaware +-subsystem:console,4.00 +-base:@C:\WINDDK\3790~1.183\bin\coffbase.txt,usermode +-entry:mainCRTStartup +objchk_wnet_x86\i386\wv_main.obj +C:\WINDDK\3790~1.183\lib\wnet\i386\BufferOverflowU.lib +C:\WINDDK\3790~1.183\lib\crt\i386\msvcrt.lib +C:\WINDDK\3790~1.183\lib\crt\i386\msvcprt.lib +C:\WINDDK\3790~1.183\lib\wnet\i386\advapi32.lib +C:\WINDDK\3790~1.183\lib\wnet\i386\kernel32.lib +C:\WINDDK\3790~1.183\lib\wnet\i386\kernel32.lib +C:\WINDDK\3790~1.183\lib\wnet\i386\advapi32.lib +C:\WINDDK\3790~1.183\lib\wnet\i386\user32.lib +C:\WINDDK\3790~1.183\lib\wnet\i386\ole32.lib +..\..\..\bin\user\objchk_wnet_x86\i386\winverbsd.lib +wv_main.obj : error LNK2001: unresolved external symbol _IID_IWVProvider +..\..\..\bin\user\objchk_wnet_x86\i386\winverb.exe : fatal error LNK1120: 1 unresolved externals + echo Skip Binplace: +Skip Binplace: + +Stop. diff --git a/branches/winverbs/dirs b/branches/winverbs/dirs new file mode 100644 index 00000000..23326682 --- /dev/null +++ b/branches/winverbs/dirs @@ -0,0 +1,6 @@ +DIRS=\ + core \ + ulp \ + hw \ + tools \ + tests -- 2.41.0