Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
No more custom base address in 'mozc_tip{32,64}.dll'
With Address Space Layout Randomization (ASLR), specifying unique base address to DLLs at the link time is no longer recommended [1]. Actually we are currently seeing in the following warning when building Mozc for Windows. [456/457] LINK_EMBED(DLL) mozc_tip64.dll LINK : warning LNK4281: undesirable base address 0x6000000 for x64 image; set base address above 4GB for best ASLR optimization Let's drop our custom 'BaseAddress' settings from 'mozc_tip{32,64}.dll' to let the linker set the recommended value. There must be no user observable behavior change anyway. Closes #834. [1]: https://learn.microsoft.com/en-us/cpp/build/reference/base-base-address#remarks PiperOrigin-RevId: 576203953
- Loading branch information