diff options
author | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-07-26 09:18:03 +0200 |
---|---|---|
committer | Stephan Bergmann <stephan.bergmann@allotropia.de> | 2024-07-26 11:22:37 +0200 |
commit | 6148e1a0e01eac6159a6ce618f30975569dc5c94 (patch) | |
tree | 508a157b6de1511f3c91fbb617024dd49f0212c8 /static | |
parent | 6ea2464edbe3df1282fa96aeb6c53770dbc04860 (diff) |
Looks like Emscripten LO doesn't need explicit --norestore --nologo
...mostly because the relevant parts of the code are hard-disabled (even if you
would --disable-wasm-strip) with ENABLE_WASM_STRIP_RECOVERYUI=TRUE and
ENABLE_WASM_STRIP_SPLASH=TRUE. (And if there are places in the code that would
need the equivalent of either --norestore or --nologo after all, we could
probably better add explicit #if EMSCRIPTEN there instead.) This allows to get
rid of hard-coding the Qt Emscripten LO command line arguments, which means that
e.g. web applications embedding LO would now be able to specify them themselves.
Change-Id: I8e2dcfd170cc32276bfb9007f098f6ae6a7f9ec1
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/171063
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <stephan.bergmann@allotropia.de>
Diffstat (limited to 'static')
-rw-r--r-- | static/emscripten/soffice_args.js | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/static/emscripten/soffice_args.js b/static/emscripten/soffice_args.js deleted file mode 100644 index 7656c7edee7e..000000000000 --- a/static/emscripten/soffice_args.js +++ /dev/null @@ -1,6 +0,0 @@ -'use strict'; - -Module['arguments'] = [ - '--norestore', - '--nologo' -]; |