Nota
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da se prijavite ili promenite direktorijume.
Pristup ovoj stranici zahteva autorizaciju. Možete pokušati da promenite direktorijume.
Specifies whether a DLL can be bound.
/ALLOWBIND[:NO]
Remarks
The /ALLOWBIND option sets a bit in a DLL's header that indicates to Bind.exe that the image is allowed to be bound. Binding can allow an image to load faster when the loader doesn't have to rebase and perform address fixup for each referenced DLL. You may not want a DLL to be bound if it has been digitally signed—binding invalidates the signature. Binding has no effect if address space layout randomization (ASLR) is enabled for the image by using /DYNAMICBASE on versions of Windows that support ASLR.
Use /ALLOWBIND:NO to prevent Bind.exe from binding the DLL.
For more information, see the /ALLOWBIND linker option.