Skip to content

Commit

Permalink
Support & document using custom wasm build
Browse files Browse the repository at this point in the history
  • Loading branch information
ochafik committed Dec 23, 2024
1 parent a779976 commit 52ddba7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 9 deletions.
18 changes: 9 additions & 9 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ SINGLE_BRANCH=--branch master --single-branch
SHALLOW=--depth 1

SHELL:=/usr/bin/env bash
WASM_BUILD=Release

all: public

.PHONY: public
.PHONY: public wasm
public: \
src/wasm \
public/openscad.js \
Expand Down Expand Up @@ -41,7 +42,7 @@ public: \
clean:
rm -fR libs build
rm -fR public/openscad.{js,wasm}
rm -fR public/libraries
rm -fR public/libraries/*.zip
rm -fR src/wasm

dist/index.js: public
Expand All @@ -54,13 +55,12 @@ src/wasm: libs/openscad-wasm
rm -f src/wasm
ln -sf "$(shell pwd)/libs/openscad-wasm" src/wasm

# libs/openscad/build/openscad.js: libs/openscad
# ( cd libs/openscad && ./scripts/wasm-base-docker-run.sh emcmake cmake -B build -DCMAKE_BUILD_TYPE=Release -DEXPERIMENTAL=1 )
# ( cd libs/openscad && ./scripts/wasm-base-docker-run.sh /bin/bash -c "cmake --build build -j || cmake --build build -j2 || cmake --build build" )

# libs/openscad-wasm: libs/openscad/build/openscad.js
# mkdir -p libs/openscad-wasm
# cp libs/openscad/build/openscad.* libs/openscad-wasm/
wasm: libs/openscad
( cd libs/openscad && ./scripts/wasm-base-docker-run.sh emcmake cmake -B build -DCMAKE_BUILD_TYPE=$(WASM_BUILD) -DEXPERIMENTAL=1 )
( cd libs/openscad && ./scripts/wasm-base-docker-run.sh /bin/bash -c "cmake --build build -j || cmake --build build -j2 || cmake --build build" )
( cd libs/openscad-wasm && unzip ../openscad-wasm.zip )
mkdir -p libs/openscad-wasm
cp libs/openscad/build/openscad.* libs/openscad-wasm/

libs/openscad-wasm:
mkdir -p libs/openscad-wasm
Expand Down
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,33 @@ rm -fR ../ochafik.github.io/openscad2 && cp -R dist ../ochafik.github.io/opensca
# Now commit and push changes, wait for site update and enjoy!
```

## Build your own WASM binary

[Makefile](./Makefile) fetches a prebuilt OpenSCAD web WASM binary, but you can build your own in a couple of minutes:

- **Optional**: use your own openscad fork / branch:

```bash
rm -fR libs/openscad
ln -s $PWD/../absolute/path/to/your/openscad libs/openscad

# If you had a native build directory, delete it.
rm -fR libs/openscad/build
```

- Build WASM binary (add `WASM_BUILD=Debug` argument if you'd like to debug any cryptic crashes):

```bash
make wasm
```

- Then continue the build:

```bash
make public
npm start
```

## Adding OpenSCAD libraries

You'll need to update 3 files (search for BOSL2 for an example):
Expand Down

0 comments on commit 52ddba7

Please sign in to comment.