summaryrefslogtreecommitdiffstats
path: root/bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx
diff options
context:
space:
mode:
authorjan Iversen <jani@libreoffice.org>2017-09-19 09:44:38 +0200
committerjan Iversen <jani@libreoffice.org>2017-09-19 14:02:51 +0200
commit7e1489bb4c2d11380d28cea2c3cf5d76303eecae (patch)
treee708e5d6f6a8cf6e9d2de88fcc0ea8a58f0d4d36 /bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx
parentofz: survive missing config (diff)
downloadcore-7e1489bb4c2d11380d28cea2c3cf5d76303eecae.tar.gz
core-7e1489bb4c2d11380d28cea2c3cf5d76303eecae.zip
iOS, remove support for 32bit (arm).
Supporting 32bit iOS, means a.o. adding several libraries to the dependency list because macOSX does not install them by default (e.g. zlib). 32bit is only used in old iPhones. updated configure.ac removed from solenv/gbuild/platform bridges corrected Change-Id: I415e744a9cb4acb3b5fbfca33c22940a1d56e390
Diffstat (limited to 'bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx')
-rw-r--r--bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx31
1 files changed, 31 insertions, 0 deletions
diff --git a/bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx b/bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx
new file mode 100644
index 000000000000..46726a8b30ba
--- /dev/null
+++ b/bridges/source/cpp_uno/gcc3_ios/cpp2uno.cxx
@@ -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/.
+ *
+ * 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 .
+ */
+
+// If we eventually get around to factoring out stuff from
+// cpp2uno-arm.cxx and cpp2uno-i386.cxx here, this is where to put it.
+
+#include "vtablefactory.hxx"
+
+void bridges::cpp_uno::shared::VtableFactory::flushCode(
+ unsigned char const *, unsigned char const *)
+{
+ // No dynamic code generation so nothing to flush
+}
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */