From 70a518c9d306521d6be993fa1679a859b7d56214 Mon Sep 17 00:00:00 2001 From: Anutosh Bhat Date: Tue, 24 Dec 2024 16:07:54 +0530 Subject: [PATCH] Fix copying xcpp.data for xeus-cpp-lite deploy page (#411) --- .github/workflows/deploy-pages.yml | 2 +- Emscripten-build-instructions.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy-pages.yml b/.github/workflows/deploy-pages.yml index 958a1b41..e449883c 100644 --- a/.github/workflows/deploy-pages.yml +++ b/.github/workflows/deploy-pages.yml @@ -185,7 +185,7 @@ jobs: micromamba activate xeus-lite-host python -m pip install jupyterlite-xeus jupyter lite build --XeusAddon.prefix=${{ env.PREFIX }} --output-dir dist - cp xcpp.data dist/extensions/@jupyterlite/xeus/static + cp $PREFIX/bin/xcpp.data dist/extensions/@jupyterlite/xeus/static cp $PREFIX/lib/libclangCppInterOp.so dist/extensions/@jupyterlite/xeus/static - name: Upload artifact diff --git a/Emscripten-build-instructions.md b/Emscripten-build-instructions.md index d1122cef..02bb8037 100644 --- a/Emscripten-build-instructions.md +++ b/Emscripten-build-instructions.md @@ -155,7 +155,7 @@ we want to include in our application. As of now this would contain all importan Libraries etc coming out of emscripten's sysroot. Assuming we are still inside build we should do the following ```bash -cp xcpp.data _output/extensions/@jupyterlite/xeus/static +cp $PREFIX/bin/xcpp.data _output/extensions/@jupyterlite/xeus/static cp $PREFIX/lib/libclangCppInterOp.so _output/extensions/@jupyterlite/xeus/static ```