Bug 975736 - Port the remaining LDFLAGS variable in ipc/app/Makefile.in to moz.build; r=mshal

This commit is contained in:
Ehsan Akhgari 2014-02-26 21:42:21 -05:00
parent 9db47ba189
commit b1a90fa13b
2 changed files with 2 additions and 2 deletions

View File

@ -38,8 +38,6 @@ include $(topsrcdir)/config/config.mk
include $(topsrcdir)/config/rules.mk
LDFLAGS += $(MOZ_ALLOW_HEAP_EXECUTE_FLAGS)
ifeq ($(OS_ARCH),WINNT) #{
ifdef MOZ_CONTENT_SANDBOX

View File

@ -35,6 +35,8 @@ if CONFIG['_MSC_VER']:
# a console application.
WIN32_EXE_LDFLAGS += ['-ENTRY:wmainCRTStartup']
LDFLAGS += [CONFIG['MOZ_ALLOW_HEAP_EXECUTE_FLAGS']]
# Control the default heap size.
# This is the heap returned by GetProcessHeap().
# As we use the CRT heap, the default size is too large and wastes VM.