Skip to content

Commit

Permalink
Fix builds for LLVM on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
saudet committed May 1, 2024
1 parent ab197f9 commit c27ab7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion llvm/src/main/java/org/bytedeco/llvm/presets/LLVM.java
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"<llvm-c/Transforms/PassBuilder.h>", "<polly/LinkAllPasses.h>", "<FullOptimization.h>", "<NamedMetadataOperations.h>", "<TargetStubs.h>"},
compiler = "cpp17", link = {"LLVM@.18.1", "LTO@.18.1", "Remarks@.18.1"}, resource = {"include", "lib", "libexec", "share"}),
@Platform(value = "macosx", link = {"LLVM", "LTO", "Remarks"}),
@Platform(value = "windows", link = {"LLVM", "LTO", "Remarks"})})
@Platform(value = "windows", link = {"Ws2_32", "LLVM", "LTO", "Remarks"})})
@NoException
public class LLVM implements InfoMapper {
static { Loader.checkVersion("org.bytedeco", "llvm"); }
Expand Down

0 comments on commit c27ab7d

Please sign in to comment.