зеркало из https://github.com/mozilla/gecko-dev.git
21 строка
547 B
Makefile
21 строка
547 B
Makefile
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this file,
|
|
# You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
include $(topsrcdir)/config/config.mk
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
DUMP_SYMBOLS_FLAGS = --count-ctors
|
|
|
|
ifdef CLANG_CL
|
|
ifdef MOZ_PROFILE_USE
|
|
ifeq (x86,$(CPU_ARCH))
|
|
PGO_LDFLAGS += -ORDER:@$(topsrcdir)/build/win32/orderfile.txt
|
|
endif
|
|
ifeq (x86_64,$(CPU_ARCH))
|
|
PGO_LDFLAGS += -ORDER:@$(topsrcdir)/build/win64/orderfile.txt
|
|
endif
|
|
endif
|
|
endif
|