dc9ccf3d8f
This allows to build a complete static LibreOffice on Linux, except for linked externals. Since LO's static build implies disabled dynamic loading, one must select one VCL backend to be compiled in. See the (large) comment in solenv/gbuild/static.mk trying to explain, why this implementation was chosen (spoiler: seems there is no other way) and what is actually implemented. This will collect all libraries, statics and externals of executables. If the executable uses components, it will get linked to all static components. While it works with any Executable, it just makes sense for soffice.bin, because the static component map sucks every dependency in, bloating most other binaries. In theory on could generate the dependencies based on the list of used components (see gb_CppunitTest_use_components), then generate a specific static constructor map, directly include it in the exe's cxx code and then link the minimal dependencies. The static LO should build on Linux with: --enable-customtarget-components --disable-dynamic-loading Tested VCL plugin config is: --disable-gtk3 --disable-gen --enable-qt5 The partial build support is split into a 2nd patch. Change-Id: Iafc95752fae9e88095f54a21f1e30a4f080815e2 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/126790 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@allotropia.de> Reviewed-by: Thorsten Behrens <thorsten.behrens@allotropia.de>
56 lines
1.6 KiB
Makefile
56 lines
1.6 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/.
|
|
#
|
|
# This file incorporates work covered by the following license notice:
|
|
#
|
|
# Licensed to the Apache Software Foundation (ASF) under one or more
|
|
# contributor license agreements. See the NOTICE file distributed
|
|
# with this work for additional information regarding copyright
|
|
# ownership. The ASF licenses this file to you under the Apache
|
|
# License, Version 2.0 (the "License"); you may not use this file
|
|
# except in compliance with the License. You may obtain a copy of
|
|
# the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
#
|
|
|
|
$(eval $(call gb_Module_Module,canvas))
|
|
|
|
$(eval $(call gb_Module_add_targets,canvas,\
|
|
Library_canvasfactory \
|
|
Library_canvastools \
|
|
Library_simplecanvas \
|
|
Library_vclcanvas \
|
|
$(if $(filter DESKTOP,$(BUILD_TYPE)), \
|
|
$(if $(or $(DISABLE_GUI),$(DISABLE_DYNLOADING)),,Executable_canvasdemo)) \
|
|
))
|
|
|
|
ifeq ($(ENABLE_CAIRO_CANVAS),TRUE)
|
|
$(eval $(call gb_Module_add_targets,canvas,\
|
|
Library_cairocanvas \
|
|
))
|
|
endif
|
|
|
|
ifeq ($(ENABLE_OPENGL_CANVAS),TRUE)
|
|
$(eval $(call gb_Module_add_targets,canvas,\
|
|
Library_oglcanvas \
|
|
Package_opengl \
|
|
))
|
|
endif
|
|
|
|
ifeq ($(OS),WNT)
|
|
$(eval $(call gb_Module_add_targets,canvas,\
|
|
Library_directx9canvas \
|
|
Library_gdipluscanvas \
|
|
StaticLibrary_directxcanvas \
|
|
))
|
|
endif
|
|
|
|
$(eval $(call gb_Module_add_check_targets,canvas,\
|
|
CppunitTest_canvas_test \
|
|
))
|
|
|
|
# vim: set noet sw=4 ts=4:
|