Test repository to check push and ssh key
Find a file
Stephan Bergmann b2760b7d2a external/epoxy: Fix -Wint-conversion
...with recent Clang 16 trunk since
<7068aa9841>
"Strengthen -Wint-conversion to default to an error", causing

> workdir/UnpackedTarball/epoxy/src/gl_generated_dispatch.c:114547:77: error: incompatible integer to pointer conversion passing 'uintptr_t' (aka 'unsigned long') to parameter of type 'GLhandleARB' (aka 'void *') [-Wint-conversion]
> GEN_THUNKS(glAttachObjectARB, (GLhandleARB containerObj, GLhandleARB obj), ((uintptr_t)containerObj, (uintptr_t)obj))
>                                                                             ^~~~~~~~~~~~~~~~~~~~~~~
> workdir/UnpackedTarball/epoxy/src/dispatch_common.h:150:40: note: expanded from macro 'GEN_THUNKS'
>     GEN_GLOBAL_REWRITE_PTR(name, args, passthrough)                  \
>                                        ^~~~~~~~~~~
> workdir/UnpackedTarball/epoxy/src/dispatch_common.h:95:14: note: expanded from macro 'GEN_GLOBAL_REWRITE_PTR'
>         name passthrough;                                        \
>              ^~~~~~~~~~~

etc.

That only hit on macOS because of the different

> #ifdef __APPLE__
> typedef void *GLhandleARB;
> #else
> typedef unsigned int GLhandleARB;
> #endif

in OpenGL's glext.h, which
<0cfb0a044b>
"Fix most GLhandleARB warnings on OS X with a big comment in our code" had tried
to address by adding "a cast to uintptr_t to shut up the compiler" in its
src/gen_dispatch.py (but without stating what compiler diagnostics exactly were
supposed to be silenced by that cast that now started to cause the above issues
with Clang 16 trunk).

It turns out that at least my macOS build with Clang 16 trunk builds fine
without that cast, so just drop it for good.  (And patching epoxy's
src/gen_dispatch.py means that UnpackedTarball_epoxy needs to switch from
gb_UnpackedTarball_set_pre_action to gb_UnpackedTarball_set_post_action.)

Change-Id: I2c87bca2cc5510d17098028d4532989f48e349a9
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/138407
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
2022-08-18 11:37:00 +02:00
.git-hooks
.github
.vscode
accessibility move scrbar.hxx to vcl/toolkit 2022-08-09 10:01:15 +02:00
android android: Add scrollbars.ui into APK 2022-08-08 13:23:15 +02:00
animations
apple_remote
avmedia Fix typo 2022-08-15 08:40:47 +02:00
basctl these two scrollbars don't meet, so drop the junction box 2022-08-08 17:34:24 +02:00
basegfx
basic cid#1509215 Using a moved object 2022-08-16 13:58:45 +02:00
bean
bin tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
binaryurp
bridges cid#1500585 Dereference before null check 2022-08-17 09:55:17 +02:00
canvas tdf#104921: Cleanup Kashida insertion logic 2022-08-14 21:10:24 +02:00
chart2 chart2: improve keys (symbols) rendering in a data table 2022-08-18 08:48:34 +02:00
cli_ure
codemaker
comphelper
compilerplugins loplugin:unusedmethods 2022-08-13 08:34:01 +02:00
config_host
configmgr
connectivity cid#1500701 silence Dereference after null check 2022-08-17 00:35:53 +02:00
cppcanvas
cppu Better cast to sal_[u]IntPtr when passing pointer to O[U]String::number 2022-08-10 13:40:09 +02:00
cppuhelper
cpputools clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
cui Resolves tdf#65473 - Unintuitive paragraph alignment options 2022-08-17 07:41:07 +02:00
dbaccess Missing test dependency 2022-08-17 17:35:05 +02:00
desktop Return std::optional instead of using bool* argument 2022-08-17 09:28:59 +02:00
dictionaries@b0fa8fc6b5 Update git submodules 2022-08-04 00:09:26 +02:00
distro-configs tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
drawinglayer cid#1456603 Uninitialized scalar field 2022-08-17 09:55:33 +02:00
editeng tdf#103492: Messed Arabic letter spacing in text starting with LTR character(s) 2022-08-14 21:13:04 +02:00
embeddedobj
embedserv
emfio tdf#104921: Cleanup Kashida insertion logic 2022-08-14 21:10:24 +02:00
eventattacher clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
extensions tdf#150278: avoid gen/gtk3 difference in m_xPropBox->GetCurPage() 2022-08-09 11:38:00 +02:00
external external/epoxy: Fix -Wint-conversion 2022-08-18 11:37:00 +02:00
extras tdf#142306 New version of Inspiration template 2022-08-02 18:29:34 +02:00
filter Fix typo 2022-08-12 19:27:58 +02:00
forms Make ToolBox::InsertItem take the command name 2022-08-10 08:28:18 +02:00
formula Related: tdf#135993 Use ScCompiler to create English OpCodeMap with AddIns 2022-08-06 19:37:38 +02:00
fpicker
framework No need to use throwing Reference ctor from 'this' 2022-08-16 14:41:29 +02:00
helpcompiler
helpcontent2@e110ef3977 Update git submodules 2022-08-12 10:45:43 +02:00
hwpfilter clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
i18nlangtag
i18npool
i18nutil
icon-themes tdf#142628 Update icons for Field and Field by Type 2022-08-01 00:25:13 +02:00
idl
idlc/test/parser
include Return std::optional instead of using bool* argument 2022-08-17 09:28:59 +02:00
instsetoo_native
io
ios
javaunohelper
jurt
jvmaccess
jvmfwk Add loongarch64 support. 2022-08-11 10:53:00 +02:00
l10ntools
librelogo
libreofficekit
lingucomponent clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
linguistic
lotuswordpro
m4
nlpsolver
o3tl
odk Fix typo 2022-08-14 19:43:00 +02:00
offapi correct the description of NumberingRules 2022-08-15 22:43:48 +02:00
officecfg Show Math sidebar by default 2022-08-18 08:03:34 +02:00
onlineupdate
oovbaapi VBA Add conversion methods to global 2022-08-06 14:16:50 +02:00
oox oox: set fill properties correctly for the data table at import 2022-08-18 08:48:05 +02:00
opencl clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
osx
package cid#1500507 silence Resource leak 2022-08-17 09:52:50 +02:00
pch
postprocess windows signing: use sha256 (instead of the default sha1) 2022-08-03 11:05:40 +02:00
pyuno clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
qadevOOo Fix typos 2022-08-12 13:24:49 +02:00
readlicense_oo tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
registry clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
remotebridges
reportbuilder Fix typos 2022-08-12 13:24:49 +02:00
reportdesign no need for ScrollBarBox if bg is already the desired color 2022-08-08 20:26:14 +02:00
ridljar warning: empty <p> tag 2022-08-13 00:35:17 +02:00
sal rtl : use a local std::mutex instead of the global mutex 2022-08-16 09:25:31 +02:00
salhelper
sax tdf#39593 Ruduce copy/paste code in Converter::converterDuration 2022-08-18 10:55:59 +02:00
sc tdf#150452: sc_subsequent_filters: Add unittest 2022-08-17 22:05:55 +02:00
scaddins Related: tdf#150203 Pricing, there is only one compatibility name, en-US 2022-08-02 21:29:29 +02:00
sccomp
schema Fix typo 2022-08-18 09:59:50 +02:00
scp2
scripting
sd fix SfxBindings::Invalidate(const sal_uInt16 *): Assertion 2022-08-17 20:36:00 +02:00
sdext cid#1500417 Dereference after null check 2022-08-16 17:37:14 +02:00
setup_native
sfx2 Make ElementsDeck the default deck for Math first start 2022-08-18 08:03:45 +02:00
shell
slideshow Better cast to sal_[u]IntPtr when passing pointer to O[U]String::number 2022-08-10 13:40:09 +02:00
smoketest clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
solenv tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
soltools
sot
starmath Return std::optional instead of using bool* argument 2022-08-17 09:28:59 +02:00
static
stoc
store clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
svgio tdf#104921: Cleanup Kashida insertion logic 2022-08-14 21:10:24 +02:00
svl tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
svtools tdf#104921: Cleanup Kashida insertion logic 2022-08-14 21:10:24 +02:00
svx cid#1500455 Dereference after null check 2022-08-16 12:58:37 +02:00
sw tdf#148671: sw_ooxmlexport16: Add unittest 2022-08-18 11:12:20 +02:00
swext
sysui
test Return std::optional instead of using bool* argument 2022-08-17 09:28:59 +02:00
testtools clang-tidy modernize-pass-by-value in various 2022-08-13 19:11:49 +02:00
toolkit crashtesting: assert on export forum-fr-40415.ods to ods 2022-08-12 10:15:24 +02:00
tools cid#1500387 silence Resource leak 2022-08-17 09:53:04 +02:00
translations@f808bec4d7 Update git submodules 2022-08-10 15:40:42 +02:00
ucb tdf#149921 ucb: webdav-curl: WNT: certificate revocation check 2022-08-15 10:34:27 +02:00
ucbhelper loplugin:passstuffbyref 2022-08-10 08:07:03 +02:00
udkapi
uitest
UnoControls
unodevtools
unoidl
unoil
unotest Verify signing certificate cryptographically before use in tests 2022-07-29 22:55:07 +02:00
unotools
unoxml
ure
uui tdf#150045 Set secondary/explanatory labels apart 2022-07-30 04:21:21 +02:00
vbahelper Drop some conversion from vbahelper; use usual functions where needed 2022-08-06 12:10:19 +02:00
vcl Related: tdf#118320 don't require experimental to be set anymore 2022-08-17 12:40:02 +02:00
winaccessibility Fix typo 2022-08-12 21:08:33 +02:00
wizards Fix typo 2022-08-18 08:48:57 +02:00
writerfilter tdf#150200 tdf#150438 sw, DOCX: fix drop cap dash, quotation etc. 2022-08-17 18:07:24 +02:00
writerperfect clang-tidy modernize-pass-by-value in writer* 2022-07-31 08:33:13 +02:00
xmerge
xmlhelp cid#1507489 Big parameter passed by value 2022-07-29 20:53:40 +02:00
xmloff xmloff: import and export for the chart data table 2022-08-15 13:08:17 +02:00
xmlreader clang-tidy modernize-pass-by-value in xmlreader 2022-07-29 13:10:15 +02:00
xmlscript Related tdf#114790: add align and vertalign to datefield im/export 2022-08-08 07:23:59 +02:00
xmlsecurity Verify signing certificate cryptographically before use in tests 2022-07-29 22:55:07 +02:00
.buckconfig
.buckversion
.clang-format
.editorconfig
.git-blame-ignore-revs
.gitattributes
.gitignore
.gitmodules
.gitpod.dockerfile
.gitpod.yml
.gitreview
antivirusDetection.vbs
autogen.sh
BUCK
config.guess
config.sub
config_host.mk.in tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
config_host_lang.mk.in
configure.ac tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
COPYING
COPYING.LGPL
COPYING.MPL
download.lst tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
g
hardened_runtime.xcent.in
install-sh
install_deps.sh
leak-suppress.txt
Library_merged.mk
lo.xcent.in
logerrit
Makefile.fetch tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
Makefile.gbuild
Makefile.in
README.cross
README.help.md Fix typo 2022-07-30 23:26:39 +02:00
README.md
README.Solaris
Repository.mk
RepositoryExternal.mk tdf#150452: Revert "tdf#130795 use concurrent hashmap in SharedStringPool" 2022-08-17 16:59:14 +02:00
RepositoryFixes.mk
RepositoryModule_build.mk
RepositoryModule_host.mk
sanitize-ubsan-excludelist
setup.cfg
TEMPLATE.SOURCECODE.HEADER
tsan-suppress.txt update tsan suppression 2022-08-11 16:02:44 +02:00

LibreOffice

Coverity Scan Build Status CII Best Practices Translation status

LibreOffice is an integrated office suite based on copyleft licenses and compatible with most document formats and standards. Libreoffice is backed by The Document Foundation, which represents a large independent community of enterprises, developers and other volunteers moved by the common goal of bringing to the market the best software for personal productivity. LibreOffice is open source, and free to download, use and distribute.

A quick overview of the LibreOffice code structure.

Overview

You can develop for LibreOffice in one of two ways, one recommended and one much less so. First the somewhat less recommended way: it is possible to use the SDK to develop an extension, for which you can read the API docs and Developers Guide. This re-uses the (extremely generic) UNO APIs that are also used by macro scripting in StarBasic.

The best way to add a generally useful feature to LibreOffice is to work on the code base however. Overall this way makes it easier to compile and build your code, it avoids any arbitrary limitations of our scripting APIs, and in general is far more simple and intuitive - if you are a reasonably able C++ programmer.

The Build Chain and Runtime Baselines

These are the current minimal operating system and compiler versions to run and compile LibreOffice, also used by the TDF builds:

  • Windows:
    • Runtime: Windows 7
    • Build: Cygwin + Visual Studio 2019 version 16.10
  • macOS:
    • Runtime: 10.14
    • Build: 11.0 + Xcode 12.5
  • Linux:
    • Runtime: RHEL 7 or CentOS 7
    • Build: either GCC 7.0.0; or Clang 8.0.1 with libstdc++ 7.3.0
  • iOS (only for LibreOfficeKit):
    • Runtime: 11.4 (only support for newer i devices == 64 bit)
    • Build: Xcode 9.3 and iPhone SDK 11.4
  • Android:
    • Build: NDK r19c and SDK 22.6.2
  • Emscripten / WASM:
    • Runtime: a browser with SharedMemory support (threads + atomics)
    • Build: Qt 5.15 with Qt supported Emscripten 1.39.8
    • See README.wasm

Java is required for building many parts of LibreOffice. In TDF Wiki article Development/Java, the exact modules that depend on Java are listed.

The baseline for Java is Java Development Kit (JDK) Version 11 or later. It is possible to build LibreOffice with JDK version 9, but it is no longer supported by the JDK vendors, thus it should be avoided.

If you want to use Clang with the LibreOffice compiler plugins, the minimal version of Clang is 12.0.1. Since Xcode doesn't provide the compiler plugin headers, you have to compile your own Clang to use them on macOS.

You can find the TDF configure switches in the distro-configs/ directory.

To setup your initial build environment on Windows and macOS, we provide the LibreOffice Development Environment (LODE) scripts.

For more information see the build instructions for your platform in the TDF wiki.

The Important Bits of Code

Each module should have a README.md file inside it which has some degree of documentation for that module; patches are most welcome to improve those. We have those turned into a web page here:

https://docs.libreoffice.org/

However, there are two hundred modules, many of them of only peripheral interest for a specialist audience. So - where is the good stuff, the code that is most useful. Here is a quick overview of the most important ones:

Module Description
sal/ this provides a simple System Abstraction Layer
tools/ this provides basic internal types: Rectangle, Color etc.
vcl/ this is the widget toolkit library and one rendering abstraction
framework/ UNO framework, responsible for building toolbars, menus, status bars, and the chrome around the document using widgets from VCL, and XML descriptions from /uiconfig/ files
sfx2/ legacy core framework used by Writer/Calc/Draw: document model / load/save / signals for actions etc.
svx/ drawing model related helper code, including much of Draw/Impress

Then applications

Module Description
desktop/ this is where the main() for the application lives, init / bootstrap. the name dates back to an ancient StarOffice that also drew a desktop
sw/ Writer
sc/ Calc
sd/ Draw / Impress

There are several other libraries that are helpful from a graphical perspective:

Module Description
basegfx/ algorithms and data-types for graphics as used in the canvas
canvas/ new (UNO) canvas rendering model with various backends
cppcanvas/ C++ helper classes for using the UNO canvas
drawinglayer/ View code to render drawable objects and break them down into primitives we can render more easily.

Rules for #include Directives (C/C++)

Use the "..." form if and only if the included file is found next to the including file. Otherwise, use the <...> form. (For further details, see the mail Re: C[++]: Normalizing include syntax ("" vs <>).)

The UNO API include files should consistently use double quotes, for the benefit of external users of this API.

loplugin:includeform (compilerplugins/clang/includeform.cxx) enforces these rules.

Finding Out More

Beyond this, you can read the README.md files, send us patches, ask on the mailing list libreoffice@lists.freedesktop.org (no subscription required) or poke people on IRC #libreoffice-dev on irc.libera.chat - we're a friendly and generally helpful mob. We know the code can be hard to get into at first, and so there are no silly questions.