Skip to content
Closed
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
6 changes: 3 additions & 3 deletions cpp/llvm/config_windows.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ const (
// the bridge for the ABI selected by its host clang++, then expose only C
// functions to the LLGo target. This avoids leaking that C++ ABI across the
// package boundary while retaining the target's native C ABI.
LLGoFiles = "$(pkg-config --cflags llvm-19) -std=c++17 --target=$(llvm-config --host-target): _wrap/demangle_windows.cpp"
// The llvm-19 package preserves LLVM's library order and required Windows
LLGoFiles = "$(pkg-config --cflags llvm-21) -std=c++17 --target=$(llvm-config --host-target): _wrap/demangle_windows.cpp"
// The llvm-21 package preserves LLVM's library order and required Windows
// system libraries.
LLGoPackage = "link: $(pkg-config --libs llvm-19)"
LLGoPackage = "link: $(pkg-config --libs llvm-21)"
)