diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:06:44 +0000 |
commit | ed5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch) | |
tree | 7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /pch/inc | |
parent | Initial commit. (diff) | |
download | libreoffice-upstream.tar.xz libreoffice-upstream.zip |
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'pch/inc')
-rw-r--r-- | pch/inc/clangfix.hxx | 31 | ||||
-rw-r--r-- | pch/inc/pch/precompiled_system.cxx | 12 | ||||
-rw-r--r-- | pch/inc/pch/precompiled_system.hxx | 85 |
3 files changed, 128 insertions, 0 deletions
diff --git a/pch/inc/clangfix.hxx b/pch/inc/clangfix.hxx new file mode 100644 index 000000000..7280032ba --- /dev/null +++ b/pch/inc/clangfix.hxx @@ -0,0 +1,31 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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/. + */ + +#ifdef __clang__ +// This is a bit lame, but when using -DMACRO that wasn't present when the PCH was built, +// Clang suddenly subjects it to the -Wunused-macros check, which isn't the case otherwise. +// And many of these macros are not actually used. So use them here to silence the warnings. +// See gb_PrecompiledHeader_ignore_flags_system in solenv/gbuild/PrecompiledHeaders.mk . + +#ifdef FASTSAX_DLLIMPLEMENTATION +#endif +#ifdef SAX_DLLIMPLEMENTATION +#endif +#ifdef SCQAHELPER_DLLIMPLEMENTATION +#endif +#ifdef SYSTEM_EXPAT +#endif +#ifdef SYSTEM_LIBXML +#endif +#ifdef SYSTEM_ZLIB +#endif + +#endif // __clang__ + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/pch/inc/pch/precompiled_system.cxx b/pch/inc/pch/precompiled_system.cxx new file mode 100644 index 000000000..ed382aeac --- /dev/null +++ b/pch/inc/pch/precompiled_system.cxx @@ -0,0 +1,12 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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/. + */ + +#include "precompiled_system.hxx" + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/pch/inc/pch/precompiled_system.hxx b/pch/inc/pch/precompiled_system.hxx new file mode 100644 index 000000000..a7aa9bcf0 --- /dev/null +++ b/pch/inc/pch/precompiled_system.hxx @@ -0,0 +1,85 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * 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/. + */ + +// Unlike other precompiled_* files, this one is (semi-)manually created. +// It is based on the output of +// (for file in */inc/pch/precompiled_*.hxx; do cat "$file" | grep -A 1000 -F "#if PCH_LEVEL >= 1" | grep -B 1000 -F "#endif // PCH_LEVEL >= 1"; done) | grep "#include" | sort -u +// which is then examined and used here. + +#if PCH_LEVEL >= 1 +#include <algorithm> +#include <array> +#include <assert.h> +#include <atomic> +#include <boost/algorithm/string.hpp> +#include <boost/cast.hpp> +#include <boost/circular_buffer.hpp> +#include <boost/functional/hash.hpp> +#include <boost/intrusive_ptr.hpp> +#include <boost/lexical_cast.hpp> +#include <boost/math/special_functions/sinc.hpp> +#include <boost/multi_array.hpp> +#include <boost/multi_index/composite_key.hpp> +#include <boost/multi_index_container.hpp> +#include <boost/multi_index/identity.hpp> +#include <boost/multi_index/mem_fun.hpp> +#include <boost/multi_index/ordered_index.hpp> +#include <boost/multi_index/random_access_index.hpp> +#include <boost/operators.hpp> +#include <optional> +#include <boost/property_tree/json_parser.hpp> +#include <boost/rational.hpp> +#include <boost/version.hpp> +#include <cassert> +#include <climits> +#include <cmath> +#include <cstddef> +#include <cstdlib> +#include <cstring> +#include <deque> +#include <errno.h> +#include <exception> +#include <float.h> +#include <functional> +#include <initializer_list> +#include <iomanip> +#include <iostream> +#include <iterator> +#include <limits> +#include <limits.h> +#include <list> +#include <locale> +#include <map> +#include <math.h> +#include <memory> +#include <new> +#include <numeric> +#include <ostream> +#include <queue> +#include <set> +#include <sstream> +#include <stack> +#include <stdarg.h> +#include <stddef.h> +#include <stdexcept> +#include <stdio.h> +#include <stdlib.h> +#include <string> +#include <string.h> +#include <string_view> +#include <time.h> +#include <typeinfo> +#include <type_traits> +#include <unordered_map> +#include <unordered_set> +#include <utility> +#include <vector> +#endif // PCH_LEVEL >= 1 + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |