I have enabled binplace from setenv and specified a location as directed in
the documentation. However, it does not seem to work.

can someone confirm the steps needed to make this fire correctly?

paul.

Re: binplace doesn't seem to instantiate post build by Maxim

Maxim
Sun Aug 26 18:43:40 CDT 2007

Is this about giving the base address to a DLL?

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
maxim@storagecraft.com
http://www.storagecraft.com

"Paul Russell" <no_spam@nospam.com> wrote in message
news:B5E53625-CC6A-4A13-9420-3CED19F9609C@microsoft.com...
> I have enabled binplace from setenv and specified a location as directed in
> the documentation. However, it does not seem to work.
>
> can someone confirm the steps needed to make this fire correctly?
>
> paul.
>


Re: binplace doesn't seem to instantiate post build by Paul

Paul
Mon Aug 27 02:58:53 CDT 2007

No.

binplace is post-build operations ...

i cna set DLL base address via my sources file .. not quite the same thing
...
"Maxim S. Shatskih" <maxim@storagecraft.com> wrote in message
news:%235ZDT0D6HHA.2208@TK2MSFTNGP06.phx.gbl...
> Is this about giving the base address to a DLL?
>
> --
> Maxim Shatskih, Windows DDK MVP
> StorageCraft Corporation
> maxim@storagecraft.com
> http://www.storagecraft.com
>
> "Paul Russell" <no_spam@nospam.com> wrote in message
> news:B5E53625-CC6A-4A13-9420-3CED19F9609C@microsoft.com...
>> I have enabled binplace from setenv and specified a location as directed
>> in
>> the documentation. However, it does not seem to work.
>>
>> can someone confirm the steps needed to make this fire correctly?
>>
>> paul.
>>
>


Re: binplace doesn't seem to instantiate post build by Maxim

Maxim
Mon Aug 27 08:07:20 CDT 2007

1) Add MAKEFILE.INC to your project.

2) In MAKEFILE.INC, add the target named like DoBinPlace and looking like:

DoBinPlace:
binplace xxx yyy $(TARGET)

where $(TARGET) is the pathname of the just-built binary.

3) In the main SOURCES file, do the following:

NTTARGETFILES=DoBinPlace

This should work.

--
Maxim Shatskih, Windows DDK MVP
StorageCraft Corporation
maxim@storagecraft.com
http://www.storagecraft.com

"Paul Russell" <no_spam@nospam.com> wrote in message
news:A787B9E3-ADE6-4517-8C2D-58C0F5209D3E@microsoft.com...
> No.
>
> binplace is post-build operations ...
>
> i cna set DLL base address via my sources file .. not quite the same thing
> ...
> "Maxim S. Shatskih" <maxim@storagecraft.com> wrote in message
> news:%235ZDT0D6HHA.2208@TK2MSFTNGP06.phx.gbl...
> > Is this about giving the base address to a DLL?
> >
> > --
> > Maxim Shatskih, Windows DDK MVP
> > StorageCraft Corporation
> > maxim@storagecraft.com
> > http://www.storagecraft.com
> >
> > "Paul Russell" <no_spam@nospam.com> wrote in message
> > news:B5E53625-CC6A-4A13-9420-3CED19F9609C@microsoft.com...
> >> I have enabled binplace from setenv and specified a location as directed
> >> in
> >> the documentation. However, it does not seem to work.
> >>
> >> can someone confirm the steps needed to make this fire correctly?
> >>
> >> paul.
> >>
> >
>


Re: binplace doesn't seem to instantiate post build by Paul

Paul
Mon Aug 27 20:49:16 CDT 2007

thanks maxim

i do desire the stripping / spliting capability of binplace as well as
placement .... since it is part of a build process it is important to have
this kind of workflow from binplace working as expected .. used to work well
through W2k3 SP1 DDK ... WDK .. well she go poof :(


"Maxim S. Shatskih" <maxim@storagecraft.com> wrote in message
news:OXxdS%23K6HHA.5360@TK2MSFTNGP03.phx.gbl...
> 1) Add MAKEFILE.INC to your project.
>
> 2) In MAKEFILE.INC, add the target named like DoBinPlace and looking
> like:
>
> DoBinPlace:
> binplace xxx yyy $(TARGET)
>
> where $(TARGET) is the pathname of the just-built binary.
>
> 3) In the main SOURCES file, do the following:
>
> NTTARGETFILES=DoBinPlace
>
> This should work.
>
> --
> Maxim Shatskih, Windows DDK MVP
> StorageCraft Corporation
> maxim@storagecraft.com
> http://www.storagecraft.com
>
> "Paul Russell" <no_spam@nospam.com> wrote in message
> news:A787B9E3-ADE6-4517-8C2D-58C0F5209D3E@microsoft.com...
>> No.
>>
>> binplace is post-build operations ...
>>
>> i cna set DLL base address via my sources file .. not quite the same
>> thing
>> ...
>> "Maxim S. Shatskih" <maxim@storagecraft.com> wrote in message
>> news:%235ZDT0D6HHA.2208@TK2MSFTNGP06.phx.gbl...
>> > Is this about giving the base address to a DLL?
>> >
>> > --
>> > Maxim Shatskih, Windows DDK MVP
>> > StorageCraft Corporation
>> > maxim@storagecraft.com
>> > http://www.storagecraft.com
>> >
>> > "Paul Russell" <no_spam@nospam.com> wrote in message
>> > news:B5E53625-CC6A-4A13-9420-3CED19F9609C@microsoft.com...
>> >> I have enabled binplace from setenv and specified a location as
>> >> directed
>> >> in
>> >> the documentation. However, it does not seem to work.
>> >>
>> >> can someone confirm the steps needed to make this fire correctly?
>> >>
>> >> paul.
>> >>
>> >
>>
>