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>
35 lines
574 B
C
35 lines
574 B
C
/*
|
|
|
|
Settings about which desktops have support enabled.
|
|
|
|
*/
|
|
|
|
#ifndef CONFIG_VCLPLUG_H
|
|
#define CONFIG_VCLPLUG_H
|
|
|
|
/**
|
|
* Set, if the platform uses X11 code.
|
|
*/
|
|
#define USING_X11 0
|
|
|
|
/**
|
|
* Set the enabled platform plugins
|
|
*/
|
|
#define ENABLE_GEN 0
|
|
#define ENABLE_GTK3 0
|
|
#define ENABLE_GTK3_KDE5 0
|
|
#define ENABLE_HEADLESS 0
|
|
#define ENABLE_KF5 0
|
|
#define ENABLE_QT5 0
|
|
#define ENABLE_QT6 0
|
|
|
|
/**
|
|
* Additional settings for the plugins
|
|
*/
|
|
#define ENABLE_GSTREAMER_1_0 0
|
|
#define QT5_HAVE_GOBJECT 0
|
|
#define QT5_USING_X11 0
|
|
#define QT5_HAVE_XCB_ICCCM 0
|
|
#define QT6_USING_X11 0
|
|
|
|
#endif
|