mirror of
https://github.com/LibreOffice/core.git
synced 2025-07-29 21:00:46 +00:00

nm -S --size-sort --print-size instdir/program/libmergedlo.so| grep ' [Dd] ' | c++filt | tail -n 10 before: ... 00000000000027f0 d aFmFormShellSlots_Impl ... 0000000000002920 d pRGBTable ... 0000000000003b80 d vcl::pdf::BuildinFontFace::m_aBuildinFonts ... 0000000000004140 d C.16.0 ... 0000000000004d80 d (anonymous namespace)::aMethods ... 00000000000066a8 d aRTFTokenTab ... 000000000000cf60 d xmloff::(anonymous namespace)::wordlist ... 000000000000cf60 d xmloff::token::getNames(int)::{lambda()#1}::operator()() const::sppcTokenNames ... 00000000000172c0 d oox::(anonymous namespace)::wordlist ... 00000000000172c0 d oox::TokenMap::getUtf8TokenName(int)::{lambda()#1}::operator()() const::sppcTokenNames after: ... 0000000000002790 d STR_ARR_SVT_LANGUAGE_TABLE ... 00000000000027a8 d RID_STRLIST_FUNCTION_NAMES ... 00000000000027f0 d aFmFormShellSlots_Impl ... 0000000000002920 d pRGBTable ... 0000000000003b80 d vcl::pdf::BuildinFontFace::m_aBuildinFonts ... 0000000000004140 d C.16.0 ... 0000000000004d80 d (anonymous namespace)::aMethods ... 00000000000066a8 d aRTFTokenTab ... 000000000000cf60 d xmloff::token::getNames(int)::{lambda()#1}::operator()() const::sppcTokenNames ... 00000000000172c0 d oox::TokenMap::getUtf8TokenName(int)::{lambda()#1}::operator()() const::sppcTokenNames See also: https://www.akkadia.org/drepper/dsohowto.pdf Change-Id: Ic1141c466d06d79d71e573c5f283cd1f089d7067 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187578 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
24 lines
1023 B
Makefile
24 lines
1023 B
Makefile
# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*-
|
|
#
|
|
# This file is part of the LibreOffice project.
|
|
#
|
|
# 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/.
|
|
#
|
|
|
|
$(eval $(call gb_CustomTarget_CustomTarget,sdext/pdfimport))
|
|
|
|
$(call gb_CustomTarget_get_target,sdext/pdfimport) : \
|
|
$(gb_CustomTarget_workdir)/sdext/pdfimport/hash.cxx
|
|
|
|
$(gb_CustomTarget_workdir)/sdext/pdfimport/hash.cxx : \
|
|
$(SRCDIR)/sdext/source/pdfimport/wrapper/keyword_list \
|
|
| $(gb_CustomTarget_workdir)/sdext/pdfimport/.dir
|
|
$(call gb_Output_announce,$(subst $(WORKDIR)/,,$@),$(true),GPF,1)
|
|
$(call gb_Trace_StartRange,$(subst $(WORKDIR)/,,$@),GPF)
|
|
$(call gb_Helper_wsl_path,$(GPERF) -C -t -l -L C++ -m 20 --switch=2 --readonly-tables --pic -Z PdfKeywordHash -k'4-5$(COMMA)$$' $<) > $@
|
|
$(call gb_Trace_EndRange,$(subst $(WORKDIR)/,,$@),GPF)
|
|
|
|
# vim:set shiftwidth=4 tabstop=4 noexpandtab:
|