summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2020-09-12 18:17:08 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2020-09-15 20:51:58 +0200
commit5e454ce1ba8a93b9d17f3b7d38b4339ff0f2339b (patch)
treeb35c7bdc95aaa15823dbfe4a5a55ae21dcdbf8c8
parenttwain32shim: disable for Windows Arm64 build (diff)
downloadcore-private/jmux/win-arm64.tar.gz
core-private/jmux/win-arm64.zip
basic: use dummy DLL mgr for Windows Arm64 build private/jmux/win-arm64
This will need a real implementation to do system calls, but for the initial compilation the dummy is sufficient. Change-Id: Ia16e47fdb8fbf4855f7c5abb0d36d9c922cd1de7
-rw-r--r--basic/source/runtime/dllmgr.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/basic/source/runtime/dllmgr.hxx b/basic/source/runtime/dllmgr.hxx
index 08927843a98d..368fa3d10a2f 100644
--- a/basic/source/runtime/dllmgr.hxx
+++ b/basic/source/runtime/dllmgr.hxx
@@ -42,7 +42,7 @@ public:
void FreeDll(OUString const & library);
private:
-#ifdef _WIN32
+#if defined(_WIN32) && !defined(_ARM64_)
struct Impl;
std::unique_ptr< Impl > impl_;