0adc9b615f
See instructions in solenv/gbuild/Trace.mk . This generates a file than can be viewed e.g. in the Chromium tracing view. Change-Id: I5f90647c58ca729375525b6daed2d4918adc8188 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/88754 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
90 lines
2.8 KiB
Makefile
90 lines
2.8 KiB
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/.
|
|
|
|
|
|
#- Env ------------------------------------------------------------------------
|
|
IOSGEN = $(BUILDDIR)/workdir/CustomTarget/ios
|
|
IOSLIBS := $(shell \
|
|
(export INSTDIR=$(INSTDIR);export OS=$(OS); \
|
|
export WORKDIR=$(WORKDIR);export LIBO_LIB_FOLDER=$(LIBO_LIB_FOLDER); \
|
|
$(SRCDIR)/bin/lo-all-static-libs))
|
|
IOSOBJ = $(IOSGEN)/Kit.o
|
|
IOSSRC = $(SRCDIR)/ios/source/LibreOfficeKit.c
|
|
|
|
ifeq ($(ENABLE_DEBUG),TRUE)
|
|
ifeq ($(CPUNAME),X86_64)
|
|
IOSKIT = $(IOSGEN)/Debug_x86_64/libKit.dylib
|
|
else
|
|
IOSKIT = $(IOSGEN)/Debug_arm64/libKit.dylib
|
|
endif
|
|
else
|
|
ifeq ($(CPUNAME),ARM64)
|
|
IOSKIT = $(IOSGEN)/Release_arm64/libKit.dylib
|
|
endif
|
|
endif
|
|
|
|
|
|
|
|
#- Top level -----------------------------------------------------------------
|
|
$(eval $(call gb_CustomTarget_CustomTarget,ios/iOS_link))
|
|
|
|
$(call gb_CustomTarget_get_target,ios/iOS_link): $(IOSKIT)
|
|
|
|
|
|
#- build ---------------------------------------------------------------------
|
|
$(IOSOBJ): $(IOSSRC) $(call gb_CustomTarget_get_target,ios/iOS_setup)
|
|
$(call gb_Output_announce,iOS compile interface,$(true),C,2)
|
|
$(gb_CC) $(gb_COMPILERDEFS) $(gb_OSDEFS) $(gb_CFLAGS) \
|
|
-DDISABLE_DYNLOADING -DLIBO_INTERNAL_ONLY \
|
|
-fvisibility=hidden -Werror -O0 -fstrict-overflow \
|
|
$(if $(ENABLE_DEBUG),-g) \
|
|
-c $(IOSSRC) -o $(IOSOBJ) \
|
|
-I$(SRCDIR)/include -I$(BUILDDIR)/config_host \
|
|
|
|
$(IOSKIT): $(IOSOBJ) $(IOSLIBS)
|
|
$(call gb_Output_announce,iOS dylib,$(true),LNK,2)
|
|
$(call gb_Trace_StartRange,iOS dylib,LNK)
|
|
$(gb_CC) -dynamiclib \
|
|
-Xlinker -rpath -Xlinker @executable_path/Frameworks \
|
|
-Xlinker -rpath -Xlinker @loader_path/Frameworks \
|
|
-install_name @rpath/libKit.dylib \
|
|
-dead_strip \
|
|
-Xlinker -export_dynamic \
|
|
-Xlinker -no_deduplicate \
|
|
-Xlinker -objc_abi_version -Xlinker 2 \
|
|
-fobjc-link-runtime \
|
|
-framework CoreFoundation \
|
|
-framework CoreGraphics \
|
|
-framework CoreText \
|
|
-liconv \
|
|
-lc++ \
|
|
-lz \
|
|
-lpthread \
|
|
-single_module \
|
|
-compatibility_version 1 \
|
|
-current_version 1 \
|
|
`$(SRCDIR)/bin/lo-all-static-libs` \
|
|
$(IOSOBJ) \
|
|
-o $(IOSKIT)
|
|
ifeq ($(origin IOS_CODEID),undefined)
|
|
@echo "please define environment variable IOS_CODEID as\n" \
|
|
"export IOS_CODEID=<your apple code identifier>"
|
|
@exit -1
|
|
else
|
|
codesign -s "$(IOS_CODEID)" $(IOSKIT)
|
|
endif
|
|
$(call gb_Trace_EndRange,iOS dylib,LNK)
|
|
|
|
|
|
#- clean ios -----------------------------------------------------------------
|
|
$(call gb_CustomTarget_get_clean_target,ios/iOS_link):
|
|
rm -f $(IOSKIT)
|
|
|
|
|
|
|
|
# vim: set noet sw=4 ts=4:
|