Mercurial > hg > orthanc-stone
view UnitTestsSources/WebAssembly/NOTES.txt @ 1748:b6a6ad64192a
FastParseVector : manually written code to parse strings like 3.1315\-1.2e12\2344.5\123 into boost::numeric::ublas::vector<double> + tests
author | Benjamin Golinvaux <bgo@osimis.io> |
---|---|
date | Mon, 22 Feb 2021 14:55:13 +0100 |
parents | 03afa09cfcf1 |
children |
line wrap: on
line source
Native compilation (without Docker) =================================== Install Emscripten: https://emscripten.org/docs/getting_started/downloads.html Then, if the installation path is "~/Downloads/emsdk/": # source ~/Downloads/emsdk/emsdk_env.sh # mkdir Build && cd Build # cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=${EMSDK}/upstream/emscripten/cmake/Modules/Platform/Emscripten.cmake -DALLOW_DOWNLOADS=ON -G Ninja # ninja install => The binaries will be put in "../../../wasm-binaries/UnitTests/" # cd `pwd`/../../../wasm-binaries/UnitTests # python3 -m http.server 8000 # firefox http://localhost:8000/index.html