Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/emscripten.yml
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ jobs:
-DLLVM_ENABLE_THREADS=OFF \
-G Ninja \
../llvm
emmake ninja libclang clangInterpreter clangStaticAnalyzerCore lld -j ${{ env.ncpus }}
emmake ninja libclang clangInterpreter clangStaticAnalyzerCore lldWasm -j ${{ env.ncpus }}
fi
cd ../
rm -rf $(find . -maxdepth 1 ! -name "build" ! -name "llvm" ! -name "clang" ! -name ".")
Expand Down
2 changes: 1 addition & 1 deletion Emscripten-build-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ emcmake cmake -DCMAKE_BUILD_TYPE=Release \
../llvm
emmake make libclang -j $(nproc --all)
emmake make clangInterpreter clangStaticAnalyzerCore -j $(nproc --all)
emmake make lld -j $(nproc --all)
emmake make lldWasm -j $(nproc --all)
```

Once this finishes building we need to take note of where we built our llvm build. This can be done by executing the following
Expand Down
2 changes: 1 addition & 1 deletion docs/Emscripten-build-instructions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ executing the following
../llvm
emmake make libclang -j $(nproc --all)
emmake make clangInterpreter clangStaticAnalyzerCore -j $(nproc --all)
emmake make lld -j $(nproc --all)
emmake make lldWasm -j $(nproc --all)

Once this finishes building we need to take note of where we built our
llvm build. This can be done by executing the following
Expand Down
Loading