From d4552761897ceb2ce2954c2782f813add9f89640 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Wed, 1 Feb 2023 21:30:59 -0500 Subject: [PATCH 1/2] build(WASI): Address lack of strtold in CLI11 --- CMakeLists.txt | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 555ed5266..87cae69fd 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,9 @@ FetchContent_Declare( ) set(CLI11_GIT_REPOSITORY "https://github.com/CLIUtils/CLI11") -set(CLI11_GIT_TAG "291c58789c031208f08f4f261a858b5b7083e8e2") +# std::strtold patch +set(CLI11_GIT_REPOSITORY "https://github.com/thewtex/CLI11") +set(CLI11_GIT_TAG "82d4e022cdfcf18d1fc59684bdc6977ea34053f4") FetchContent_Declare( cli11 GIT_REPOSITORY ${CLI11_GIT_REPOSITORY} From ea674c11e307cd6c3e008599d557798e86c10d99 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Wed, 1 Feb 2023 21:56:08 -0500 Subject: [PATCH 2/2] feat(itk-wasm-cli): Update default Docker image for 20230201-d4552761 --- src/itk-wasm-cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/itk-wasm-cli.js b/src/itk-wasm-cli.js index 24f490724..62085b0e0 100755 --- a/src/itk-wasm-cli.js +++ b/src/itk-wasm-cli.js @@ -13,7 +13,7 @@ const program = new Command() // Array of types that will require an import from itk-wasm const typesRequireImport = ['Image'] -const defaultImageTag = '20230122-5e3aea6c' +const defaultImageTag = '20230201-d4552761' function processCommonOptions() { const options = program.opts()