Skip to content

Commit

Permalink
installing clang
Browse files Browse the repository at this point in the history
  • Loading branch information
anutosh491 committed Dec 6, 2023
1 parent 4dbd00d commit d733a58
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,18 @@ jobs:
emcmake cmake ../src/ -DJSON_BuildTests=OFF -DCMAKE_INSTALL_PREFIX=/custom_sysroot
emmake make -j2 install
- name: "install clang"
run: |
mkdir -p /opt/llvm/build
git clone https://github.com/llvm/llvm-project.git /opt/llvm/src
cd /opt/llvm/src
git checkout llvmorg-17.0.6
cd /opt/llvm/build
emcmake cmake ../src/ \
-DLLVM_ENABLE_PROJECTS="clang" \
-DCMAKE_INSTALL_PREFIX=/custom_sysroot
emmake make -j2
- name: "install xeus"
run: |
mkdir -p /opt/xeus/build
Expand Down

0 comments on commit d733a58

Please sign in to comment.