Merge pull request #885 from cpunion/fix

fix: wrong llvm libs flag
This commit is contained in:
xushiwei
2024-11-27 11:24:39 +08:00
committed by GitHub

View File

@@ -19,7 +19,7 @@ package llvm
// ----------------------------------------------------------------------------- // -----------------------------------------------------------------------------
const ( const (
LLGoPackage = "link: -L$(llvm-config --libs) $(llvm-config --ldflags); -lLLVM" LLGoPackage = "link: $(llvm-config --libs) $(llvm-config --ldflags); -lLLVM"
) )
// StringView represents a C++ std::string_view object. // StringView represents a C++ std::string_view object.