diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 16:51:28 +0000 |
commit | 940b4d1848e8c70ab7642901a68594e8016caffc (patch) | |
tree | eb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /ios/CustomTarget_iOS_link.mk | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream/1%7.0.4.tar.xz libreoffice-upstream/1%7.0.4.zip |
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | ios/CustomTarget_iOS_link.mk | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/ios/CustomTarget_iOS_link.mk b/ios/CustomTarget_iOS_link.mk new file mode 100644 index 000000000..240f38d07 --- /dev/null +++ b/ios/CustomTarget_iOS_link.mk @@ -0,0 +1,90 @@ +# -*- 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: |