mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-26 14:22:01 +00:00
Bug 975734 - Port the LDFLAGS variables in toolkit/crashreporter/injector/Makefile.in to moz.build; r=mshal
This commit is contained in:
parent
a1909fa87d
commit
e249ccbbef
@ -6,9 +6,3 @@ STL_FLAGS =
|
||||
MOZ_GLUE_LDFLAGS =
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
ifndef GNU_CC
|
||||
LDFLAGS += -ENTRY:DummyEntryPoint
|
||||
else
|
||||
LDFLAGS += -Wl,-e,_DummyEntryPoint@12
|
||||
endif
|
||||
|
@ -18,5 +18,9 @@ LOCAL_INCLUDES += [
|
||||
'/toolkit/crashreporter/google-breakpad/src',
|
||||
]
|
||||
|
||||
|
||||
USE_STATIC_LIBS = True
|
||||
|
||||
if CONFIG['GNU_CC']:
|
||||
LDFLAGS += ['-Wl,-e,_DummyEntryPoint@12']
|
||||
else:
|
||||
LDFLAGS += ['-ENTRY:DummyEntryPoint']
|
||||
|
Loading…
Reference in New Issue
Block a user