am 2094f855: am a503fb36: PIE executables created with mingw use "mainCRTStartup" as their entry point.

* commit '2094f855a89277320bd9533108e443e92d2dc25b':
  PIE executables created with mingw use "mainCRTStartup" as their entry point.
This commit is contained in:
Stephen Hines 2014-10-02 19:42:12 +00:00 committed by Android Git Automerger
commit e77cba7bfd
1 changed files with 4 additions and 0 deletions

View File

@ -1423,6 +1423,10 @@ ifdef BUILD_HOST_static
HOST_FPIE_FLAGS :=
else
HOST_FPIE_FLAGS := -pie
# Force the correct entry point to workaround a bug in binutils that manifests with -pie
ifeq ($(HOST_OS),windows)
HOST_FPIE_FLAGS += -Wl,-e_mainCRTStartup
endif
endif
ifneq ($(HOST_CUSTOM_LD_COMMAND),true)