Skip to content

Commit

Permalink
fix: replace cx-llvm with llvm and pray it works
Browse files Browse the repository at this point in the history
  • Loading branch information
vapidinfinity committed Feb 7, 2025
1 parent 5202928 commit a8ff5ff
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
# Build Dependencies
"bison"
"pkg-config"
"gcenx/wine/cx-llvm"
# "gcenx/wine/cx-llvm"
"llvm"
# Dependencies
"freetype"
Expand All @@ -51,7 +52,7 @@ jobs:
"sdl2"
"molten-vk"
"winetricks"
"ffmpeg@7" # added ffmpeg even though i dont know if it is even needed lol
"ffmpeg@7" # will likely be installed as part of gstreamer but just in case
)
brew update
Expand Down Expand Up @@ -80,7 +81,8 @@ jobs:
- name: Add bison & cx-llvm to $PATH
run: |
echo "$(brew --prefix bison)/bin" >> $GITHUB_PATH
echo "$(brew --prefix cx-llvm)/bin" >> $GITHUB_PATH
# echo "$(brew --prefix cx-llvm)/bin" >> $GITHUB_PATH
echo "$(brew --prefix llvm)/bin" >> $GITHUB_PATH
- name: Configure wine64
run: |
Expand Down

0 comments on commit a8ff5ff

Please sign in to comment.