Skip to content

Commit

Permalink
[Windows] Don't build LLVM with debug symbols (#4118)
Browse files Browse the repository at this point in the history
These debug symbols take up too much disk space and prevent us from
running in the CI container.  I enabled debug symbols a couple days ago,
and the issue has surfaced once LLVM was bumped.  This still builds
CIRCT in RelWithDebInfo mode.
  • Loading branch information
youngar authored Oct 18, 2022
1 parent 7d8a09d commit d80c74d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildAndTestWindows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ jobs:
cmake ..\llvm -GNinja `
-DLLVM_ENABLE_PROJECTS=mlir -DLLVM_BUILD_EXAMPLES=OFF `
-DLLVM_TARGETS_TO_BUILD="host" `
-DCMAKE_BUILD_TYPE=RelWithDebInfo -DLLVM_ENABLE_ASSERTIONS=ON `
-DCMAKE_BUILD_TYPE=Release -DLLVM_ENABLE_ASSERTIONS=ON `
-DLLVM_INSTALL_UTILS=ON -DCMAKE_INSTALL_PREFIX="$(pwd)/../install"
cmake --build . --target install --config RelWithDebInfo
cmake --build . --target install --config Release
# --------
# Build and test CIRCT in both debug and release mode.
Expand Down

0 comments on commit d80c74d

Please sign in to comment.