From 8f9bb490ffb8d96188df6e1a3ecddff61f2cbdda Mon Sep 17 00:00:00 2001 From: anutosh491 Date: Tue, 24 Dec 2024 16:06:10 +0530 Subject: [PATCH] Fix copying xcpp.data for xeus-cpp-lite deploy page --- .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 958a1b41d..e449883c4 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 d1122cefe..02bb80374 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 ```