Can someone tell me what the following error means:

Linking c:\sio0_ezmon directory ********************
'nmake.exe /c BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1
NTTEST= UMTEST= 386=1'
NMAKE : U1073: don't know how to make 'C:\WINDDK\lib\i386
\free\usbd.lib'

I am trying to rebuild one of Cypress's USB drivers using
the Windows XP SP1 DDK in a checked environment can't
figure this one out. Thanks. JSS

Re: Win SP1 XP DDK error by David

David
Thu Jul 31 17:23:23 CDT 2003

You don't have that library.

"John" <jsobtzak@dakotatechnologies.com> wrote in message
news:0bef01c357a0$8b5456d0$3501280a@phx.gbl...
> Can someone tell me what the following error means:
>
> Linking c:\sio0_ezmon directory ********************
> 'nmake.exe /c BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1
> NTTEST= UMTEST= 386=1'
> NMAKE : U1073: don't know how to make 'C:\WINDDK\lib\i386
> \free\usbd.lib'
>
> I am trying to rebuild one of Cypress's USB drivers using
> the Windows XP SP1 DDK in a checked environment can't
> figure this one out. Thanks. JSS



Re: Win SP1 XP DDK error by Mark

Mark
Thu Jul 31 17:32:56 CDT 2003

On Thu, 31 Jul 2003 13:15:54 -0700, "John"
<jsobtzak@dakotatechnologies.com> wrote:

> Can someone tell me what the following error means:
>
>Linking c:\sio0_ezmon directory ********************
>'nmake.exe /c BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1
>NTTEST= UMTEST= 386=1'
>NMAKE : U1073: don't know how to make 'C:\WINDDK\lib\i386
>\free\usbd.lib'
>
> I am trying to rebuild one of Cypress's USB drivers using
>the Windows XP SP1 DDK in a checked environment can't
>figure this one out. Thanks. JSS

What's in the SOURCES file for the sio0_ezmon driver?



=====================
Mark Roddy
Windows XP/2000/NT Consulting, Microsoft DDK MVP
Hollis Technology Solutions 603-321-1032
www.hollistech.com
markr@hollistech.com
For Windows Device Driver Training: see www.azius.com

Re: Win SP1 XP DDK error by Tim

Tim
Sun Aug 03 01:30:15 CDT 2003

"John" <jsobtzak@dakotatechnologies.com> wrote:

> Can someone tell me what the following error means:
>
>Linking c:\sio0_ezmon directory ********************
>'nmake.exe /c BUILDMSG=Stop. -i LINKONLY=1 NOPASS0=1
>NTTEST= UMTEST= 386=1'
>NMAKE : U1073: don't know how to make 'C:\WINDDK\lib\i386
>\free\usbd.lib'
>
> I am trying to rebuild one of Cypress's USB drivers using
>the Windows XP SP1 DDK in a checked environment can't
>figure this one out. Thanks. JSS

The most likely problem is that their sources file was written for an
earlier version of the DDK. Library paths are specified rather differently
in the latest versions. The basic reason for this change seems to have
been to trip up driver developers.

Look for a TARGETLIBS block in the "sources" file. Change whatever
complicated symbols they use in the paths so they look like this:

TARGETLIBS=$(DDK_LIB_PATH)\usbd.lib \
$(DDK_LIB_PATH)\ntoskrnl.lib
--
- Tim Roberts, timr@probo.com
Providenza & Boekelheide, Inc.