Linking obj in driver...

Hi,

I need to link chkstk.obj with my driver…What do I
need to add in my sources file to do this…

Thanks
Daniel


Do you Yahoo!?
Yahoo! Mail - Find what you need with new enhanced search.
http://info.mail.yahoo.com/mail_250

I guess you need to rewrite some of your code to use heap allocated and not
stack allocated memory.

Regards,
Anton Kolomyeytsev

CEO, Rocket Division Software

-----Original Message-----
From: xxxxx@lists.osr.com
[mailto:xxxxx@lists.osr.com] On Behalf Of Dan .
Sent: Wednesday, December 22, 2004 11:14 PM
To: Windows System Software Devs Interest List
Subject: [ntdev] Linking obj in driver…

Hi,

I need to link chkstk.obj with my driver…What do I need to add in my
sources file to do this…

Thanks
Daniel


Do you Yahoo!?
Yahoo! Mail - Find what you need with new enhanced search.
http://info.mail.yahoo.com/mail_250


Questions? First check the Kernel Driver FAQ at
http://www.osronline.com/article.cfm?id=256

You are currently subscribed to ntdev as: xxxxx@cooldev.com To unsubscribe
send a blank email to xxxxx@lists.osr.com

Ok. I thought I will keep it short…(I only want to
know how to link objs using the build utility)

For the back story-
Here we go…

My driver(NDIS 5.x for XP) links to a 3rd party .lib
file which needs chkstk.obj in debug build…

I am more interested in knowing how to link .objs that
are not part of my source with my driver…

— Anton Kolomyeytsev wrote:

> I guess you need to rewrite some of your code to use
> heap allocated and not
> stack allocated memory.
>
> Regards,
> Anton Kolomyeytsev
>
> CEO, Rocket Division Software
>
> -----Original Message-----
> From: xxxxx@lists.osr.com
> [mailto:xxxxx@lists.osr.com] On Behalf
> Of Dan .
> Sent: Wednesday, December 22, 2004 11:14 PM
> To: Windows System Software Devs Interest List
> Subject: [ntdev] Linking obj in driver…
>
> Hi,
>
> I need to link chkstk.obj with my driver…What do
> I need to add in my
> sources file to do this…
>
> Thanks
> Daniel
>
>
>
>
> Do you Yahoo!?
> Yahoo! Mail - Find what you need with new enhanced
> search.
> http://info.mail.yahoo.com/mail_250
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as:
> xxxxx@cooldev.com To unsubscribe
> send a blank email to
> xxxxx@lists.osr.com
>
>
> —
> Questions? First check the Kernel Driver FAQ at
> http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as:
> xxxxx@yahoo.com
> To unsubscribe send a blank email to
> xxxxx@lists.osr.com
>


Do you Yahoo!?
Send holiday email and support a worthy cause. Do good.
http://celebrity.mail.yahoo.com

Try this ( as per example )

TARGETLIBS=$(DDK_LIB_PATH)\sehprolg.obj

and / or

TARGETLIBS= $(TARGETLIBS) chkstk.obj

----- Original Message -----
From: “Dan .”
To: “Windows System Software Devs Interest List”
Sent: Wednesday, December 22, 2004 10:33 PM
Subject: RE: [ntdev] Linking obj in driver…

> Ok. I thought I will keep it short…(I only want to
> know how to link objs using the build utility)
>
> For the back story-
> Here we go…
>
> My driver(NDIS 5.x for XP) links to a 3rd party .lib
> file which needs chkstk.obj in debug build…
>
> I am more interested in knowing how to link .objs that
> are not part of my source with my driver…
>
>
>
> — Anton Kolomyeytsev wrote:
>
> > I guess you need to rewrite some of your code to use
> > heap allocated and not
> > stack allocated memory.
> >
> > Regards,
> > Anton Kolomyeytsev
> >
> > CEO, Rocket Division Software
> >
> > -----Original Message-----
> > From: xxxxx@lists.osr.com
> > [mailto:xxxxx@lists.osr.com] On Behalf
> > Of Dan .
> > Sent: Wednesday, December 22, 2004 11:14 PM
> > To: Windows System Software Devs Interest List
> > Subject: [ntdev] Linking obj in driver…
> >
> > Hi,
> >
> > I need to link chkstk.obj with my driver…What do
> > I need to add in my
> > sources file to do this…
> >
> > Thanks
> > Daniel
> >
> >
> >
> >
> > Do you Yahoo!?
> > Yahoo! Mail - Find what you need with new enhanced
> > search.
> > http://info.mail.yahoo.com/mail_250
> >
> > —
> > Questions? First check the Kernel Driver FAQ at
> > http://www.osronline.com/article.cfm?id=256
> >
> > You are currently subscribed to ntdev as:
> > xxxxx@cooldev.com To unsubscribe
> > send a blank email to
> > xxxxx@lists.osr.com
> >
> >
> > —
> > Questions? First check the Kernel Driver FAQ at
> > http://www.osronline.com/article.cfm?id=256
> >
> > You are currently subscribed to ntdev as:
> > xxxxx@yahoo.com
> > To unsubscribe send a blank email to
> > xxxxx@lists.osr.com
> >
>
>
>
>
>

> Do you Yahoo!?
> Send holiday email and support a worthy cause. Do good.
> http://celebrity.mail.yahoo.com
>
> —
> Questions? First check the Kernel Driver FAQ at http://www.osronline.com/article.cfm?id=256
>
> You are currently subscribed to ntdev as: xxxxx@compaqnet.be
> To unsubscribe send a blank email to xxxxx@lists.osr.com
>